Add "done" back in for prompts, remove argument from ListAgents tool def

This commit is contained in:
Laine
2025-03-12 09:01:31 -04:00
parent 56cccd660d
commit fdf5550ea3
3 changed files with 4 additions and 10 deletions

View File

@@ -3,13 +3,7 @@ from models.tool_definitions import ToolDefinition, ToolArgument
list_agents_tool = ToolDefinition(
name="ListAgents",
description="List available agents to interact with, pulled from goal_registry. ",
arguments=[
ToolArgument(
name="userConfirmation",
type="string",
description="dummy variable to make thing work",
),
],
arguments=[],
)
change_goal_tool = ToolDefinition(