Spaces:
Configuration error
Configuration error
| """Interaction agent module.""" | |
| from .agent import ( | |
| build_system_prompt, | |
| prepare_message_with_history, | |
| ) | |
| from .runtime import InteractionAgentRuntime, InteractionResult | |
| from .tools import ToolResult, get_tool_schemas, handle_tool_call | |
| __all__ = [ | |
| "InteractionAgentRuntime", | |
| "InteractionResult", | |
| "build_system_prompt", | |
| "prepare_message_with_history", | |
| "ToolResult", | |
| "get_tool_schemas", | |
| "handle_tool_call", | |
| ] | |