refactor: Remove "commands" field from TOOL_TABLE_SCHEMA (#5809)

This commit is contained in:
anovazzi1 2025-01-20 14:23:27 -03:00 committed by GitHub
commit bde5fea4af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,19 +32,6 @@ TOOL_TABLE_SCHEMA = [
"filterable": False,
"edit_mode": EditMode.INLINE,
},
{
"name": "commands",
"display_name": "Commands",
"type": "str",
"description": (
"Add commands to the tool. These commands will be used to run the tool. Start all commands with a `/`. "
"You can add multiple commands separated by a comma.\n"
"Example: `/command1`, `/command2`, `/command3`"
),
"sortable": False,
"filterable": False,
"edit_mode": EditMode.INLINE,
},
]
TOOLS_METADATA_INFO = "Modify tool names and descriptions to help agents understand when to use each tool."