Skip to content

Commit c5a7047

Browse files
Use 3.3 as a default model.
1 parent 9c10398 commit c5a7047

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/game_sdk/game/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def __init__(self,
105105
agent_description: str,
106106
get_agent_state_fn: Callable,
107107
workers: Optional[List[WorkerConfig]] = None,
108-
model_name: str = "Llama-3.1-70B-Instruct",
108+
model_name: str = "Llama-3.3-70B-Instruct",
109109
):
110110

111111
if api_key.startswith("apt-"):

src/game_sdk/game/worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(
4949
action_space: List[Function],
5050
# specific additional instruction for the worker (PROMPT)
5151
instruction: Optional[str] = "",
52-
model_name: str = "Llama-3.1-70B-Instruct",
52+
model_name: str = "Llama-3.3-70B-Instruct",
5353
):
5454

5555
if api_key.startswith("apt-"):

0 commit comments

Comments
 (0)