Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -35,7 +35,10 @@ final_answer(
|
|
| 35 |
Do NOT forget the triple backticks and the `<end_code>` tag — they are required for evaluation.
|
| 36 |
Even if you can't answer the question fully, always provide reasoning and return a final_answer block.
|
| 37 |
"""
|
| 38 |
-
model=InferenceClientModel(
|
|
|
|
|
|
|
|
|
|
| 39 |
# --- Basic Agent Definition ---
|
| 40 |
# ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
|
| 41 |
class BasicAgent:
|
|
|
|
| 35 |
Do NOT forget the triple backticks and the `<end_code>` tag — they are required for evaluation.
|
| 36 |
Even if you can't answer the question fully, always provide reasoning and return a final_answer block.
|
| 37 |
"""
|
| 38 |
+
model = InferenceClientModel(
|
| 39 |
+
model_id="Qwen/Qwen2.5-Coder-7B-Instruct",
|
| 40 |
+
provider="together"
|
| 41 |
+
)
|
| 42 |
# --- Basic Agent Definition ---
|
| 43 |
# ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
|
| 44 |
class BasicAgent:
|