l3xv commited on
Commit
ba5c527
·
1 Parent(s): 81917a3

test with gpt-4o + search + python

Browse files
Files changed (2) hide show
  1. app.py +7 -2
  2. requirements.txt +3 -1
app.py CHANGED
@@ -3,6 +3,7 @@ import gradio as gr
3
  import requests
4
  import inspect
5
  import pandas as pd
 
6
 
7
  # (Keep Constants as is)
8
  # --- Constants ---
@@ -14,9 +15,13 @@ class BasicAgent:
14
  def __init__(self):
15
  print("BasicAgent initialized.")
16
  def __call__(self, question: str) -> str:
 
 
 
 
17
  print(f"Agent received question (first 50 chars): {question[:50]}...")
18
- fixed_answer = "This is a default answer."
19
- print(f"Agent returning fixed answer: {fixed_answer}")
20
  return fixed_answer
21
 
22
  def run_and_submit_all( profile: gr.OAuthProfile | None):
 
3
  import requests
4
  import inspect
5
  import pandas as pd
6
+ from smolagents import OpenAIServerModel, DuckDuckGoSearchTool, PythonInterpreterTool, CodeAgent
7
 
8
  # (Keep Constants as is)
9
  # --- Constants ---
 
15
  def __init__(self):
16
  print("BasicAgent initialized.")
17
  def __call__(self, question: str) -> str:
18
+ self.agent = CodeAgent(
19
+ model = OpenAIServerModel(model_id="gpt-4o"),
20
+ tools=[DuckDuckGoSearchTool(), PythonInterpreterTool()]
21
+ )
22
  print(f"Agent received question (first 50 chars): {question[:50]}...")
23
+ fixed_answer = self.agent.run(question)
24
+ print(f"Agent returning answer: {fixed_answer}")
25
  return fixed_answer
26
 
27
  def run_and_submit_all( profile: gr.OAuthProfile | None):
requirements.txt CHANGED
@@ -1,2 +1,4 @@
1
  gradio
2
- requests
 
 
 
1
  gradio
2
+ requests
3
+ smolagents[openai]
4
+ smolagents