SanteriVtj commited on
Commit
4e41220
·
verified ·
1 Parent(s): c5fd713

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -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 ---
@@ -15,7 +16,12 @@ class BasicAgent:
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
 
 
3
  import requests
4
  import inspect
5
  import pandas as pd
6
+ from agent import return_agent
7
 
8
  # (Keep Constants as is)
9
  # --- Constants ---
 
16
  print("BasicAgent initialized.")
17
  def __call__(self, question: str) -> str:
18
  print(f"Agent received question (first 50 chars): {question[:50]}...")
19
+ fixed_answer = return_agent().run(
20
+ f"""
21
+ You are a problem-solving agent, and your task is to use the tools that you have to solve the following problem:
22
+ {question}
23
+ """
24
+ )
25
  print(f"Agent returning fixed answer: {fixed_answer}")
26
  return fixed_answer
27