baxin commited on
Commit
e59be42
·
1 Parent(s): 70c2209

change the default model

Browse files
Files changed (1) hide show
  1. config.py +1 -1
config.py CHANGED
@@ -3,9 +3,9 @@ BASE_URL = "http://localhost:8000/v1"
3
 
4
 
5
  MODELS = {
 
6
  "llama-4-scout-17b-16e-instruct": {"name": "Llama4 Scout", "tokens": 8192, "developer": "Meta"},
7
  "llama3.1-8b": {"name": "Llama3.1-8b", "tokens": 8192, "developer": "Meta"},
8
- "llama-3.3-70b": {"name": "Llama-3.3-70b", "tokens": 8192, "developer": "Meta"},
9
  }
10
 
11
 
 
3
 
4
 
5
  MODELS = {
6
+ "llama-3.3-70b": {"name": "Llama-3.3-70b", "tokens": 8192, "developer": "Meta"},
7
  "llama-4-scout-17b-16e-instruct": {"name": "Llama4 Scout", "tokens": 8192, "developer": "Meta"},
8
  "llama3.1-8b": {"name": "Llama3.1-8b", "tokens": 8192, "developer": "Meta"},
 
9
  }
10
 
11