- CustomAgent.py +2 -1
CustomAgent.py
CHANGED
|
@@ -42,7 +42,8 @@ Question: {question}
|
|
| 42 |
answer a user's query.
|
| 43 |
"""
|
| 44 |
...
|
| 45 |
-
|
|
|
|
| 46 |
|
| 47 |
def _banana(query: str) -> str:
|
| 48 |
"""
|
|
|
|
| 42 |
answer a user's query.
|
| 43 |
"""
|
| 44 |
...
|
| 45 |
+
result = _magic(question)
|
| 46 |
+
return result
|
| 47 |
|
| 48 |
def _banana(query: str) -> str:
|
| 49 |
"""
|