core / Exports / RobotaConfigurable
Interface: RobotaConfigurable
Configuration interface for Robota Contains configuration and management methods
Hierarchy
RobotaConfigurable
Table of contents
Methods
Methods
callTool
▸ callTool(toolName
, parameters
): Promise
<any
>
Call a specific tool directly
Parameters
Name | Type | Description |
---|---|---|
toolName | string | Name of the tool to call |
parameters | Record <string , any > | Parameters to pass to the tool |
Returns
Promise
<any
>
Promise resolving to the tool's result
Defined in
getAvailableTools
▸ getAvailableTools(): any
[]
Get list of all available tools
Returns
any
[]
Array of tool metadata objects
Defined in
clearConversationHistory
▸ clearConversationHistory(): void
Clear all conversation history
Returns
void