@jataware/beaker-client
    Preparing search index...

    Interface IBeakerToolCall

    interface IBeakerToolCall {
        ended_at?: string;
        error?: { ename: string; evalue: string; traceback?: string[] };
        output_preview?: string;
        output_truncated?: boolean;
        started_at?: string;
        state: BeakerToolCallState;
        tool_call_id: string;
        tool_input: any;
        tool_name: string;
        [key: string]: PartialJSONValue | undefined;
    }

    Hierarchy

    • PartialJSONObject
      • IBeakerToolCall

    Indexable

    • [key: string]: PartialJSONValue | undefined
    Index

    Properties

    ended_at?: string
    error?: { ename: string; evalue: string; traceback?: string[] }
    output_preview?: string
    output_truncated?: boolean
    started_at?: string
    tool_call_id: string
    tool_input: any
    tool_name: string