feat(core): update default model config in client.ts (#12960)

This commit is contained in:
anthony bushong
2025-11-12 16:52:04 -08:00
committed by GitHub
parent a810ca80bc
commit d26b828ab3

View File

@@ -72,8 +72,9 @@ const MAX_TURNS = 100;
export class GeminiClient {
private chat?: GeminiChat;
private readonly generateContentConfig: GenerateContentConfig = {
temperature: 0,
topP: 1,
temperature: 1,
topP: 0.95,
topK: 64,
};
private sessionTurnCount = 0;