Spaces:
Sleeping
Sleeping
fix: no more fixed_answer
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ class BasicAgent:
|
|
22 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
23 |
answer = self.workflow(question)
|
24 |
print(f"Agent returning fixed answer: {answer}")
|
25 |
-
return
|
26 |
|
27 |
|
28 |
def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
|
22 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
23 |
answer = self.workflow(question)
|
24 |
print(f"Agent returning fixed answer: {answer}")
|
25 |
+
return answer
|
26 |
|
27 |
|
28 |
def run_and_submit_all( profile: gr.OAuthProfile | None):
|