Skip to content

Commit

Permalink
fix: (setting) Update default model to gpt-4o in SettingField
Browse files Browse the repository at this point in the history
  • Loading branch information
yufeikang committed May 14, 2024
1 parent c06bbea commit 6a9503c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ai_cli/setting.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Setting:
endpoint = SettingField("OpenAI API Endpoint", description="default is https://api.openai.com")
model = SettingField(
"Model",
default="gpt-4-turbo-preview",
default="gpt-4o",
description="default is openai model, if you use other LLM, please change it",
)
no_stream = SettingField("Disable stream mode", default=False, type=bool)
Expand Down

0 comments on commit 6a9503c

Please sign in to comment.