Skip to content

core / Exports / RobotaConfigurable

Interface: RobotaConfigurable

Configuration interface for Robota Contains configuration and management methods

Hierarchy

Table of contents

Methods

Methods

callTool

callTool(toolName, parameters): Promise<any>

Call a specific tool directly

Parameters

NameTypeDescription
toolNamestringName of the tool to call
parametersRecord<string, any>Parameters to pass to the tool

Returns

Promise<any>

Promise resolving to the tool's result

Defined in

interfaces/robota-core.ts:51


getAvailableTools

getAvailableTools(): any[]

Get list of all available tools

Returns

any[]

Array of tool metadata objects

Defined in

interfaces/robota-core.ts:58


clearConversationHistory

clearConversationHistory(): void

Clear all conversation history

Returns

void

Defined in

interfaces/robota-core.ts:63

Released under the MIT License.