We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb7cf31 commit 73c4983Copy full SHA for 73c4983
1 file changed
src/main/kotlin/ai/devchat/cli/DevChatConfig.kt
@@ -15,6 +15,8 @@ class DevChatConfig(private val configPath: String) {
15
"gpt-3.5-turbo" to ModelConfig(provider = "devchat.ai", isStream = true),
16
"gpt-3.5-turbo-16k" to ModelConfig(provider = "devchat.ai", isStream = true),
17
"gpt-4" to ModelConfig(provider = "devchat.ai", isStream = true),
18
+ "gpt-3.5-turbo-1106" to ModelConfig(provider = "devchat.ai", isStream = true),
19
+ "gpt-4-1106-preview" to ModelConfig(provider = "devchat.ai", isStream = true),
20
"claude-2" to ModelConfig(provider = "general", isStream = true),
21
"xinghuo-2" to ModelConfig(provider = "general", isStream = true),
22
"chatglm_pro" to ModelConfig(provider = "general", isStream = true),
0 commit comments