Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ import copy
|
|
8 |
|
9 |
# Default configuration
|
10 |
default_config = {
|
11 |
-
"main_model": "llama-3.
|
12 |
"cycles": 3,
|
13 |
"layer_agent_config": {}
|
14 |
}
|
@@ -20,7 +20,7 @@ layer_agent_config_def = {
|
|
20 |
},
|
21 |
"layer_agent_2": {
|
22 |
"system_prompt": "Respond with a thought and then your response to the question. {helper_response}",
|
23 |
-
"model_name": "
|
24 |
"temperature": 0.7
|
25 |
},
|
26 |
"layer_agent_3": {
|
@@ -33,7 +33,7 @@ layer_agent_config_def = {
|
|
33 |
# Recommended Configuration
|
34 |
|
35 |
rec_config = {
|
36 |
-
"main_model": "llama-3.2-
|
37 |
"cycles": 2,
|
38 |
"layer_agent_config": {}
|
39 |
}
|
@@ -134,14 +134,12 @@ st.set_page_config(
|
|
134 |
layout="wide"
|
135 |
)
|
136 |
valid_model_names = [
|
137 |
-
'llama-3.2-90b-text-preview',
|
138 |
'llama3-70b-8192',
|
139 |
'llama3-8b-8192',
|
140 |
-
'llama-3.
|
141 |
'llama-3.1-8b-instant',
|
142 |
-
'
|
143 |
-
'
|
144 |
-
'gemma-7b-it',
|
145 |
'gemma2-9b-it',
|
146 |
'mixtral-8x7b-32768'
|
147 |
]
|
|
|
8 |
|
9 |
# Default configuration
|
10 |
default_config = {
|
11 |
+
"main_model": "llama-3.2-3b-preview",
|
12 |
"cycles": 3,
|
13 |
"layer_agent_config": {}
|
14 |
}
|
|
|
20 |
},
|
21 |
"layer_agent_2": {
|
22 |
"system_prompt": "Respond with a thought and then your response to the question. {helper_response}",
|
23 |
+
"model_name": "llama-3.2-3b-preview",
|
24 |
"temperature": 0.7
|
25 |
},
|
26 |
"layer_agent_3": {
|
|
|
33 |
# Recommended Configuration
|
34 |
|
35 |
rec_config = {
|
36 |
+
"main_model": "llama-3.2-3b-preview",
|
37 |
"cycles": 2,
|
38 |
"layer_agent_config": {}
|
39 |
}
|
|
|
134 |
layout="wide"
|
135 |
)
|
136 |
valid_model_names = [
|
|
|
137 |
'llama3-70b-8192',
|
138 |
'llama3-8b-8192',
|
139 |
+
'llama-3.3-70b-versatile',
|
140 |
'llama-3.1-8b-instant',
|
141 |
+
'llama-3.2-3b-preview',
|
142 |
+
'llama-3.2-1b-preview',
|
|
|
143 |
'gemma2-9b-it',
|
144 |
'mixtral-8x7b-32768'
|
145 |
]
|