SongGuess
    Preparing search index...
    type ResponsesOutput = {
        created_at?: number;
        error?: ResponseError | null;
        id?: string;
        incomplete_details?: ResponseIncompleteDetails | null;
        instructions?: string | ResponseInputItem[] | null;
        max_output_tokens?: number | null;
        object?: "response";
        output?: ResponseOutputItem[];
        output_text?: string;
        parallel_tool_calls?: boolean;
        previous_response_id?: string | null;
        prompt?: ResponsePrompt | null;
        reasoning?: Reasoning | null;
        safety_identifier?: string;
        service_tier?: "auto" | "default" | "flex" | "scale" | "priority" | null;
        status?: ResponseStatus;
        temperature?: number | null;
        text?: ResponseTextConfig;
        tool_choice?: ToolChoiceOptions | ToolChoiceFunction;
        tools?: Tool[];
        top_p?: number | null;
        truncation?: "auto" | "disabled" | null;
        usage?: ResponseUsage;
    }
    Index

    Properties

    created_at?: number
    error?: ResponseError | null
    id?: string
    incomplete_details?: ResponseIncompleteDetails | null
    instructions?: string | ResponseInputItem[] | null
    max_output_tokens?: number | null
    object?: "response"
    output_text?: string
    parallel_tool_calls?: boolean
    previous_response_id?: string | null
    prompt?: ResponsePrompt | null
    reasoning?: Reasoning | null
    safety_identifier?: string
    service_tier?: "auto" | "default" | "flex" | "scale" | "priority" | null
    temperature?: number | null
    tools?: Tool[]
    top_p?: number | null
    truncation?: "auto" | "disabled" | null