AI agent instructions
AI agent instructions
Fields
string | undefined
HTTP method. Defaults to
GET.Record<string, string> | undefined
Request headers.
Record<string, unknown> | undefined
Query parameters appended to the URL (before any fragment). Arrays repeat the key.
unknown
JSON body, sent with
Content-Type: application/json unless a content type is given.FetchData | undefined
Form body (
Record, sent url-encoded) or a raw string body sent verbatim.number | undefined
Abort the request after this many milliseconds. Must be positive.
boolean | undefined
Allow
http: URLs and follow redirects. Off by default because the request
carries the page’s cookies: an https: request redirected to http: would
send them in cleartext before the response can be inspected, so by default
redirects are not followed and a redirected response throws."error" | "manual" | "follow" | undefined
Browser
fetch redirect mode. Defaults to manual (a redirect throws)
unless allowInsecure is set, in which case redirects are followed like
the Python SDK does.