Skip to content

Commit

Permalink
feat: set gemini-1.5-flash as the default model (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
reugn authored Dec 14, 2024
1 parent b707d74 commit ed5f223
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Usage:
Flags:
-c, --config string path to configuration file in JSON format (default "gemini_cli_config.json")
-h, --help help for this command
-m, --model string generative model name (default "gemini-pro")
-m, --model string generative model name (default "gemini-1.5-flash")
--multiline read input as a multi-line string
-s, --style string markdown format style (ascii, dark, light, pink, notty, dracula) (default "auto")
-t, --term string multi-line input terminator (default "$")
Expand Down
2 changes: 1 addition & 1 deletion gemini/chat_session.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"google.golang.org/api/option"
)

const DefaultModel = "gemini-pro"
const DefaultModel = "gemini-1.5-flash"

// ChatSession represents a gemini powered chat session.
type ChatSession struct {
Expand Down

0 comments on commit ed5f223

Please sign in to comment.