diepala commited on
Commit
41eef3b
·
1 Parent(s): b2b5269

first agent test

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ class BasicAgent:
19
 
20
  def __call__(self, question: str) -> str:
21
  print(f"Agent received question (first 50 chars): {question[:50]}...")
22
- answer = "test answer" # run_agent(question)
23
  print(f"Agent returning fixed answer: {answer}")
24
  return answer
25
 
 
19
 
20
  def __call__(self, question: str) -> str:
21
  print(f"Agent received question (first 50 chars): {question[:50]}...")
22
+ answer = run_agent(question)
23
  print(f"Agent returning fixed answer: {answer}")
24
  return answer
25