Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,8 +19,8 @@ class BasicAgent:
|
|
| 19 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 20 |
final_question = initial_general_instructions + agent_1_instructions + question + basic_general_instructions
|
| 21 |
final_answer = agent_1.run(final_question)
|
| 22 |
-
print(f"Agent returning fixed answer: {
|
| 23 |
-
return
|
| 24 |
|
| 25 |
def run_and_submit_all( profile: gr.OAuthProfile | None):
|
| 26 |
"""
|
|
|
|
| 19 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 20 |
final_question = initial_general_instructions + agent_1_instructions + question + basic_general_instructions
|
| 21 |
final_answer = agent_1.run(final_question)
|
| 22 |
+
print(f"Agent returning fixed answer: {final_answer}")
|
| 23 |
+
return final_answer
|
| 24 |
|
| 25 |
def run_and_submit_all( profile: gr.OAuthProfile | None):
|
| 26 |
"""
|