Type Alias ToolArgument<I, O>

ToolArgument:
    | string
    | ToolAction<I, O>
    | Action<I, O>
    | ToolDefinition
    | ExecutablePrompt<any, any, any>

A reference to a tool in the form of a name, definition, or the action itself.

Type Parameters