Set Hermes default model to GPT 5.5

This commit is contained in:
2026-05-23 09:19:38 +02:00
parent 06cc749b69
commit 2c8d4da6ff
2 changed files with 26 additions and 4 deletions
+13 -2
View File
@@ -17,10 +17,21 @@ in {
settings = {
# ── Model ──────────────────────────────────────────────────────────
model = {
default = "glm-5.1";
provider = "zai";
default = "gpt-5.5";
provider = "openai-codex";
};
fallback_providers = [
{
provider = "zai";
model = "glm-5.1";
}
{
provider = "minimax";
model = "MiniMax-M2.7";
}
];
credential_pool_strategies = {
zai = "fill_first";
};