Trying to prevent the agent call available_tools unprompted.
Browse files
app.py
CHANGED
@@ -35,6 +35,7 @@ def non_specific_start()-> str:
|
|
35 |
def available_tools()-> str:
|
36 |
"""A tool that takes no arguments but returns a list of tools available to the agent.
|
37 |
I prefer to call this function if there is an explicit request for the tools that are available.
|
|
|
38 |
Args:
|
39 |
None
|
40 |
"""
|
|
|
35 |
def available_tools()-> str:
|
36 |
"""A tool that takes no arguments but returns a list of tools available to the agent.
|
37 |
I prefer to call this function if there is an explicit request for the tools that are available.
|
38 |
+
I do not like to call this function unless there is an explicit request by the user, or unless it is called by another tool.
|
39 |
Args:
|
40 |
None
|
41 |
"""
|