Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
44 |
|
45 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
46 |
try:
|
47 |
-
agent = BasicAgent(
|
48 |
except Exception as e:
|
49 |
print(f"Error instantiating agent: {e}")
|
50 |
return f"Error initializing agent: {e}", None
|
|
|
44 |
|
45 |
# 1. Instantiate Agent ( modify this part to create your agent)
|
46 |
try:
|
47 |
+
agent = BasicAgent(model='Qwen/Qwen2.5-Coder-32B-Instruct', tools=[search_tool])
|
48 |
except Exception as e:
|
49 |
print(f"Error instantiating agent: {e}")
|
50 |
return f"Error initializing agent: {e}", None
|