Update app.py
Browse files
app.py
CHANGED
|
@@ -33,8 +33,8 @@ class BasicAgent:
|
|
| 33 |
)
|
| 34 |
def __call__(self, question: str) -> str:
|
| 35 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 36 |
-
fixed_answer = "This is a default answer."
|
| 37 |
-
print(f"Agent returning fixed answer: {fixed_answer}")
|
| 38 |
|
| 39 |
try:
|
| 40 |
# Run the agent with the question
|
|
|
|
| 33 |
)
|
| 34 |
def __call__(self, question: str) -> str:
|
| 35 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 36 |
+
#fixed_answer = "This is a default answer."
|
| 37 |
+
#print(f"Agent returning fixed answer: {fixed_answer}")
|
| 38 |
|
| 39 |
try:
|
| 40 |
# Run the agent with the question
|