Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ class BasicAgent:
|
|
28 |
|
29 |
def __call__(self, question: str) -> str:
|
30 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
31 |
-
fixed_answer = self.
|
32 |
print(f"Agent returning answer: {fixed_answer}")
|
33 |
return fixed_answer
|
34 |
|
|
|
28 |
|
29 |
def __call__(self, question: str) -> str:
|
30 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
31 |
+
fixed_answer = self.get_page_summary(question)
|
32 |
print(f"Agent returning answer: {fixed_answer}")
|
33 |
return fixed_answer
|
34 |
|