Kurt Nistelberger commited on
Commit
67fe2e6
·
1 Parent(s): 81917a3
Files changed (2) hide show
  1. app.py +16 -5
  2. requirements.txt +4 -1
app.py CHANGED
@@ -4,6 +4,8 @@ import requests
4
  import inspect
5
  import pandas as pd
6
 
 
 
7
  # (Keep Constants as is)
8
  # --- Constants ---
9
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
@@ -12,12 +14,21 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
12
  # ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
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):
23
  """
 
4
  import inspect
5
  import pandas as pd
6
 
7
+ from smolagents import CodeAgent, DuckDuckGoSearchTool, OpenAIServerModel, WikipediaSearchTool
8
+
9
  # (Keep Constants as is)
10
  # --- Constants ---
11
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
 
14
  # ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
15
  class BasicAgent:
16
  def __init__(self):
17
+ model = OpenAIServerModel(model_id="gpt-4o")
18
+
19
+ search_tool = DuckDuckGoSearchTool()
20
+ wiki_search = WikipediaSearchTool()
21
+
22
+ self.agent = CodeAgent(
23
+ model = model,
24
+ tools=[
25
+ search_tool,
26
+ wiki_search
27
+ ]
28
+ )
29
+
30
  def __call__(self, question: str) -> str:
31
+ return self.agent.run(question) # type: ignore
 
 
 
32
 
33
  def run_and_submit_all( profile: gr.OAuthProfile | None):
34
  """
requirements.txt CHANGED
@@ -1,2 +1,5 @@
1
  gradio
2
- requests
 
 
 
 
1
  gradio
2
+ requests
3
+ requests
4
+ smolagents
5
+ smolagents[openai]