Skip to content

Commit 3a3af0f

Browse files
authored
Merge pull request game-by-virtuals#100 from game-by-virtuals/70b_default_model
Switch to 70B as a default model.
2 parents 0d3cb67 + c5a7047 commit 3a3af0f

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-405B-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-405B-Instruct",
52+
model_name: str = "Llama-3.3-70B-Instruct",
5353
):
5454

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

0 commit comments

Comments
 (0)