URLContextResultStep: {
    call_id: string;
    is_error?: boolean;
    result: URLContextResult[];
    signature?: string;
    type: "url_context_result";
}

URL context result step.

Type declaration

  • call_id: string

    Required. ID to match the ID from the function call block.

  • Optionalis_error?: boolean

    Whether the URL context resulted in an error.

  • result: URLContextResult[]

    Required. The results of the URL context.

  • Optionalsignature?: string

    A signature hash for backend validation.

  • type: "url_context_result"