Commit
·
103165b
1
Parent(s):
8cc2fb6
Lower budget test
Browse files
agent.py
CHANGED
|
@@ -184,7 +184,7 @@ class GeminiAgent:
|
|
| 184 |
model = self.model,
|
| 185 |
tools = self.tools,
|
| 186 |
add_base_tools = True, # probably redundant, but it does not hurt
|
| 187 |
-
max_steps =
|
| 188 |
additional_authorized_imports = AUTHORIZED_IMPORTS,
|
| 189 |
verbosity_level = 1,
|
| 190 |
max_print_outputs_length=1_000_000
|
|
|
|
| 184 |
model = self.model,
|
| 185 |
tools = self.tools,
|
| 186 |
add_base_tools = True, # probably redundant, but it does not hurt
|
| 187 |
+
max_steps = 2,
|
| 188 |
additional_authorized_imports = AUTHORIZED_IMPORTS,
|
| 189 |
verbosity_level = 1,
|
| 190 |
max_print_outputs_length=1_000_000
|
app.py
CHANGED
|
@@ -14,7 +14,7 @@ request_count = 0
|
|
| 14 |
active_model_index = 0
|
| 15 |
|
| 16 |
GEMINI_MODELS = [
|
| 17 |
-
"gemini/gemini-2.5-flash-lite",
|
| 18 |
"gemini/gemini-2.5-flash",
|
| 19 |
]
|
| 20 |
|
|
|
|
| 14 |
active_model_index = 0
|
| 15 |
|
| 16 |
GEMINI_MODELS = [
|
| 17 |
+
# "gemini/gemini-2.5-flash-lite",
|
| 18 |
"gemini/gemini-2.5-flash",
|
| 19 |
]
|
| 20 |
|