Hiyve Components - v1.0.0
    Preparing search index...

    A single step in the agent's reasoning process

    interface AgentReasoningStep {
        content?: string;
        error?: string;
        params?: Record<string, unknown>;
        resultSummary?: string;
        success?: boolean;
        tool?: string;
        type: "error" | "thinking" | "tool_call" | "tool_result";
    }
    Index

    Properties

    content?: string

    Thinking content (for thinking steps)

    error?: string

    Error message (for error steps)

    params?: Record<string, unknown>

    Parameters passed to the tool

    resultSummary?: string

    Summary of the tool result

    success?: boolean

    Whether the tool call succeeded (for tool_result steps)

    tool?: string

    Tool name (for tool_call and tool_result steps)

    type: "error" | "thinking" | "tool_call" | "tool_result"

    Step type