Agent Client Protocol - v0.2.0-alpha.8
    Preparing search index...

    Interface PromptResponse

    Response from processing a user prompt.

    See protocol docs: Check for Completion

    interface PromptResponse {
        stopReason:
            | "cancelled"
            | "end_turn"
            | "max_tokens"
            | "max_turn_requests"
            | "refusal";
    }
    Index

    Properties

    Properties

    stopReason:
        | "cancelled"
        | "end_turn"
        | "max_tokens"
        | "max_turn_requests"
        | "refusal"

    Indicates why the agent stopped processing the turn.