Skip to content

Commit fb1608c

Browse files
committed
set anthropic primary with openai fallback
1 parent 68eb171 commit fb1608c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nix/hosts/clawdinator-1-common.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ in
7979
maxConcurrent = 4;
8080
skipBootstrap = true;
8181
models = {
82-
"openai/gpt-5-codex" = { alias = "Codex"; };
8382
"anthropic/claude-opus-4-5" = { alias = "Opus"; };
83+
"openai/gpt-5-codex" = { alias = "Codex"; };
8484
};
8585
model = {
86-
primary = "openai/gpt-5-codex";
87-
fallbacks = [ "anthropic/claude-opus-4-5" ];
86+
primary = "anthropic/claude-opus-4-5";
87+
fallbacks = [ "openai/gpt-5-codex" ];
8888
};
8989
};
9090
agents.list = [

0 commit comments

Comments
 (0)