Typo
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ def non_specific_start()-> str:
|
|
26 |
"""
|
27 |
try:
|
28 |
tools_string = ", ".join([f for f in available_tools()])
|
29 |
-
result = "Welcome to this basic agent interface. Here are some of the tools I have access to" + tools_string
|
30 |
return result
|
31 |
except Exception as e:
|
32 |
return "Welcome to this basic agent interface."
|
|
|
26 |
"""
|
27 |
try:
|
28 |
tools_string = ", ".join([f for f in available_tools()])
|
29 |
+
result = "Welcome to this basic agent interface. Here are some of the tools I have access to: " + tools_string
|
30 |
return result
|
31 |
except Exception as e:
|
32 |
return "Welcome to this basic agent interface."
|