@suluk/chat - v0.2.1
    Preparing search index...

    Interface ChatMessage

    interface ChatMessage {
        role: "tool" | "system" | "user" | "assistant";
        content?: string | null;
        tool_calls?: ToolCall[];
        tool_call_id?: string;
        name?: string;
    }
    Index

    Properties

    role: "tool" | "system" | "user" | "assistant"
    content?: string | null
    tool_calls?: ToolCall[]

    assistant turns that call tools

    tool_call_id?: string

    tool-result turns reference the call they answer

    name?: string