mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-13 05:12:55 -07:00
feat(core): update default model config in client.ts (#12960)
This commit is contained in:
@@ -72,8 +72,9 @@ const MAX_TURNS = 100;
|
|||||||
export class GeminiClient {
|
export class GeminiClient {
|
||||||
private chat?: GeminiChat;
|
private chat?: GeminiChat;
|
||||||
private readonly generateContentConfig: GenerateContentConfig = {
|
private readonly generateContentConfig: GenerateContentConfig = {
|
||||||
temperature: 0,
|
temperature: 1,
|
||||||
topP: 1,
|
topP: 0.95,
|
||||||
|
topK: 64,
|
||||||
};
|
};
|
||||||
private sessionTurnCount = 0;
|
private sessionTurnCount = 0;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user