Abraham E. Tavarez commited on
Commit ·
8a43ec3
1
Parent(s): d4804be
visit website tool
Browse files
app.py
CHANGED
|
@@ -15,8 +15,8 @@ class BasicAgent:
|
|
| 15 |
def __init__(self):
|
| 16 |
print("BasicAgent initialized.")
|
| 17 |
def __call__(self, question: str) -> str:
|
| 18 |
-
return codeAgent.run(question)
|
| 19 |
-
|
| 20 |
# print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 21 |
# fixed_answer = "This is a default answer."
|
| 22 |
# print(f"Agent returning fixed answer: {fixed_answer}")
|
|
|
|
| 15 |
def __init__(self):
|
| 16 |
print("BasicAgent initialized.")
|
| 17 |
def __call__(self, question: str) -> str:
|
| 18 |
+
# return codeAgent.run(question)
|
| 19 |
+
return toolCallingAgent.run(question)
|
| 20 |
# print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 21 |
# fixed_answer = "This is a default answer."
|
| 22 |
# print(f"Agent returning fixed answer: {fixed_answer}")
|