Spaces:
Runtime error
Runtime error
Commit ·
d6515f2
1
Parent(s): 42c190a
Update RBotReloaded.py
Browse files- RBotReloaded.py +1 -1
RBotReloaded.py
CHANGED
|
@@ -244,7 +244,7 @@ class RBotAgent:
|
|
| 244 |
|
| 245 |
# Get tools prompt
|
| 246 |
def tools_prompt(self):
|
| 247 |
-
return "\n".join([ f"
|
| 248 |
|
| 249 |
# Main handler
|
| 250 |
def __call__(self, params):
|
|
|
|
| 244 |
|
| 245 |
# Get tools prompt
|
| 246 |
def tools_prompt(self):
|
| 247 |
+
return "\n".join([ f"{tool.name}(query_params)" for tool in self.tools])
|
| 248 |
|
| 249 |
# Main handler
|
| 250 |
def __call__(self, params):
|