Update app.py
Browse files
app.py
CHANGED
@@ -138,7 +138,7 @@ class BasicAgent:
|
|
138 |
# ---- Low‑level LLM call
|
139 |
def _call_llm(self, prompt: str, max_tokens: int = 256) -> str:
|
140 |
# List of models to try in order
|
141 |
-
models = ["gpt-4o-mini", "gpt-3.5-turbo"
|
142 |
|
143 |
for model in models:
|
144 |
try:
|
|
|
138 |
# ---- Low‑level LLM call
|
139 |
def _call_llm(self, prompt: str, max_tokens: int = 256) -> str:
|
140 |
# List of models to try in order
|
141 |
+
models = ["gpt-4.1", "gpt-4o-mini", "gpt-3.5-turbo"]
|
142 |
|
143 |
for model in models:
|
144 |
try:
|