Skip to content

Commit c46b79f

Browse files
committed
Fix mini v2 model config names
1 parent 1e87653 commit c46b79f

8 files changed

Lines changed: 16 additions & 13 deletions

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ OPENAI_API_KEY=
1111
GEMINI_API_KEY=
1212
XAI_API_KEY=
1313
DASHSCOPE_API_KEY=
14+
15+
# Optional: only needed for legacy configs that still set `model_class: portkey`.
16+
PORTKEY_API_KEY=

configs/examples/BattleSnake__claude-sonnet-4-5-20250929__o3__r5__s1000.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ players:
1313
config:
1414
agent: !include mini/default.yaml
1515
model:
16-
model_name: '@anthropic/claude-sonnet-4-5-20250929'
16+
model_name: 'anthropic/claude-sonnet-4-5-20250929'
1717
model_kwargs:
1818
temperature: 0.2
1919
max_tokens: 4096
@@ -22,7 +22,7 @@ players:
2222
config:
2323
agent: !include mini/default.yaml
2424
model:
25-
model_name: '@openai/o3'
25+
model_name: 'openai/o3'
2626
prompts:
2727
game_description: |-
2828
You are a software developer ({{player_id}}) competing in a coding game called BattleSnake.

configs/examples/CoreWar__claude-sonnet-4-5-20250929__o3__r5__s1000.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ players:
1010
config:
1111
agent: !include mini/default.yaml
1212
model:
13-
model_name: '@anthropic/claude-sonnet-4-5-20250929'
13+
model_name: 'anthropic/claude-sonnet-4-5-20250929'
1414
model_kwargs:
1515
temperature: 0.2
1616
max_tokens: 4096
@@ -19,7 +19,7 @@ players:
1919
config:
2020
agent: !include mini/default.yaml
2121
model:
22-
model_name: '@openai/o3'
22+
model_name: 'openai/o3'
2323
prompts:
2424
game_description: |-
2525
You are a software developer ({{player_id}}) competing in a coding game called CoreWar.

configs/examples/Halite__claude-sonnet-4-5-20250929__o3__r5__s250.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ players:
1010
config:
1111
agent: !include mini/default.yaml
1212
model:
13-
model_name: '@anthropic/claude-sonnet-4-5-20250929'
13+
model_name: 'anthropic/claude-sonnet-4-5-20250929'
1414
model_kwargs:
1515
temperature: 0.2
1616
max_tokens: 4096
@@ -19,7 +19,7 @@ players:
1919
config:
2020
agent: !include mini/default.yaml
2121
model:
22-
model_name: '@openai/o3'
22+
model_name: 'openai/o3'
2323
prompts:
2424
game_description: |-
2525
You are a software developer ({{player_id}}) competing in a coding game called Halite.

configs/examples/HuskyBench__claude-sonnet-4-5-20250929__o3__r5__s100.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ players:
1010
config:
1111
agent: !include mini/default.yaml
1212
model:
13-
model_name: '@anthropic/claude-sonnet-4-5-20250929'
13+
model_name: 'anthropic/claude-sonnet-4-5-20250929'
1414
model_kwargs:
1515
temperature: 0.2
1616
max_tokens: 4096
@@ -19,7 +19,7 @@ players:
1919
config:
2020
agent: !include mini/default.yaml
2121
model:
22-
model_name: '@openai/o3'
22+
model_name: 'openai/o3'
2323
prompts:
2424
game_description: |-
2525
You are a software developer ({{player_id}}) competing in a coding game called HuskyBench.

configs/examples/RoboCode__claude-sonnet-4-5-20250929__o3__r5__s250.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ players:
1313
config:
1414
agent: !include mini/default.yaml
1515
model:
16-
model_name: '@anthropic/claude-sonnet-4-5-20250929'
16+
model_name: 'anthropic/claude-sonnet-4-5-20250929'
1717
model_kwargs:
1818
temperature: 0.2
1919
max_tokens: 4096
@@ -22,7 +22,7 @@ players:
2222
config:
2323
agent: !include mini/default.yaml
2424
model:
25-
model_name: '@openai/o3'
25+
model_name: 'openai/o3'
2626
prompts:
2727
game_description: |-
2828
You are a software developer ({{player_id}}) competing in a coding game called RoboCode.

configs/examples/RobotRumble__claude-sonnet-4-5-20250929__o3__r5__s250.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ players:
1111
config:
1212
agent: !include mini/default.yaml
1313
model:
14-
model_name: '@anthropic/claude-sonnet-4-5-20250929'
14+
model_name: 'anthropic/claude-sonnet-4-5-20250929'
1515
model_kwargs:
1616
temperature: 0.2
1717
max_tokens: 4096
@@ -20,7 +20,7 @@ players:
2020
config:
2121
agent: !include mini/default.yaml
2222
model:
23-
model_name: '@openai/o3'
23+
model_name: 'openai/o3'
2424
prompts:
2525
game_description: |-
2626
You are a software developer ({{player_id}}) competing in a coding game called RobotRumble.

configs/models.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
- model_name: xai/grok-code-fast-1
1717
model_kwargs:
1818
temperature: 0.2
19-
- model_name: google/gemini-2.5-pro
19+
- model_name: gemini/gemini-2.5-pro
2020
model_kwargs:
2121
temperature: 0.2
2222
- model_name: openai/gpt-5

0 commit comments

Comments
 (0)