We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f822130 commit 7b8c796Copy full SHA for 7b8c796
1 file changed
src/art/utils/deployment/wandb.py
@@ -15,6 +15,8 @@ class WandbDeploymentConfig(DeploymentConfig):
15
"""Configuration for deploying to W&B.
16
17
Supported base models:
18
+ - meta-llama/Llama-3.1-8B-Instruct
19
+ - meta-llama/Llama-3.1-70B-Instruct
20
- OpenPipe/Qwen3-14B-Instruct
21
- Qwen/Qwen2.5-14B-Instruct
22
"""
@@ -23,6 +25,8 @@ class WandbDeploymentConfig(DeploymentConfig):
23
25
24
26
27
WANDB_SUPPORTED_BASE_MODELS = [
28
+ "meta-llama/Llama-3.1-8B-Instruct",
29
+ "meta-llama/Llama-3.1-70B-Instruct",
30
"OpenPipe/Qwen3-14B-Instruct",
31
"Qwen/Qwen2.5-14B-Instruct",
32
]
0 commit comments