fix model/provider mismatch
This commit is contained in:
parent
9b03c8e5cc
commit
9799d6f05f
1 changed files with 2 additions and 2 deletions
|
|
@ -293,8 +293,8 @@ func TestConvertConfig(t *testing.T) {
|
|||
if len(warnings) != 0 {
|
||||
t.Errorf("expected no warnings, got %v", warnings)
|
||||
}
|
||||
if cfg.Agents.Defaults.Model != "glm-4.7" {
|
||||
t.Errorf("default model should be glm-4.7, got %q", cfg.Agents.Defaults.Model)
|
||||
if cfg.Agents.Defaults.Model != "deepseek/deepseek-chat" {
|
||||
t.Errorf("default model should be deepseek/deepseek-chat, got %q", cfg.Agents.Defaults.Model)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue