@archastro/sdk
    Preparing search index...

    Interface AIChatStreamToolResult

    The result of a server-executed tool, streamed back into the run (SSE tool_result event).

    interface AIChatStreamToolResult {
        content?: string;
        id?: string;
        name?: string;
        resolution?: string;
    }
    Index

    Properties

    content?: string

    The tool's output, serialized as a string.

    id?: string

    ID of the tool call this result satisfies.

    name?: string

    Name of the tool that produced this result.

    resolution?: string

    How the tool call resolved, e.g. "ok" or "error".