dygoo commited on
Commit
b97fee2
·
verified ·
1 Parent(s): 2ada372

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(tools=[search_tool], model='Qwen/Qwen2.5-Coder-32B-Instruct')
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