[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-venice-ai-venice-responses":3,"mdc--c3lkth-key":31,"related-org-venice-ai-venice-responses":3254,"related-repo-venice-ai-venice-responses":3417},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"venice-responses","use Venice OpenAI-compatible responses API","Use Venice's Alpha POST \u002Fresponses endpoint - an OpenAI-compatible Responses API with typed output blocks (reasoning, message, function_call, web_search_call). Covers request shape, streaming, differences from \u002Fchat\u002Fcompletions, supported venice_parameters subset, and E2EE behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"venice-ai","Venice AI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvenice-ai.png","veniceai",[13,17],{"name":14,"slug":15,"type":16},"LLM","llm","tag",{"name":18,"slug":19,"type":16},"API Development","api-development",119,"https:\u002F\u002Fgithub.com\u002Fveniceai\u002Fskills","2026-08-01T05:43:16.719358",null,15,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],"Agent Skills for the Venice.ai API. One folder per surface area, each with a SKILL.md for agent runtimes (Cursor, Claude, Codex, etc.).","https:\u002F\u002Fgithub.com\u002Fveniceai\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fvenice-responses","---\nname: venice-responses\ndescription: Use Venice's Alpha POST \u002Fresponses endpoint - an OpenAI-compatible Responses API with typed output blocks (reasoning, message, function_call, web_search_call). Covers request shape, streaming, differences from \u002Fchat\u002Fcompletions, supported venice_parameters subset, and E2EE behavior.\n---\n\n# Venice Responses API (Alpha)\n\n`POST \u002Fapi\u002Fv1\u002Fresponses` is Venice's OpenAI-compatible Responses endpoint. It returns a **structured, typed output array** instead of a single `message.content` string — ideal for agents that need to separate reasoning, messages, tool calls, and built-in tool events.\n\n> **Alpha.** Access is gated behind the `responsesApiEnabled` flag on Bearer API keys (staff-only during beta). x402 wallet auth bypasses this flag — you can pay per request without the flag. Schemas may change.\n\n## Use when\n\n- You need the OpenAI Responses-style response shape (`output[]` with typed `type: \"reasoning\" | \"message\" | \"function_call\" | \"web_search_call\"` blocks) for a client library that expects it.\n- You want clean separation of reasoning vs message vs tool-call output.\n- You want streaming via SSE with typed events.\n\nOtherwise use [`venice-chat`](..\u002Fvenice-chat\u002FSKILL.md) — it has more features, more models, and full Venice parameters.\n\n## Limitations vs `\u002Fchat\u002Fcompletions`\n\n| Limitation | Detail |\n|---|---|\n| **Stateless** | No conversation persistence across requests. Send the full history each call. |\n| **E2EE models default to rejection** | E2EE-capable models return `400` unless you pass `venice_parameters.enable_e2ee: false` (TEE-only mode). For end-to-end encrypted inference with E2EE headers, use `\u002Fchat\u002Fcompletions`. |\n| **Subset of `venice_parameters`** | `character_slug`, `enable_e2ee`, `enable_web_search`, `enable_web_scraping`, `enable_web_citations`, `include_venice_system_prompt`, `include_search_results_in_stream` are supported. `strip_thinking_response`, `disable_thinking`, `enable_x_search` are **not** wired through in Alpha. |\n| **Access gated by feature flag** | Bearer keys without `responsesApiEnabled` get `401`. x402 requests are allowed (pay-per-call). |\n\n## Authentication\n\nSame as the rest of the API — either `Authorization: Bearer \u003Ckey>` or `SIGN-IN-WITH-X: \u003CSIWX>`. See [`venice-auth`](..\u002Fvenice-auth\u002FSKILL.md).\n\n## Minimal request\n\n```bash\ncurl https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fresponses \\\n  -H \"Authorization: Bearer $VENICE_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"model\": \"zai-org-glm-5-1\",\n    \"input\": \"Explain why the sky is blue in one paragraph.\"\n  }'\n```\n\n`input` accepts:\n- a plain string, or\n- an array of typed input items (similar to `chat\u002Fcompletions` message parts) for multi-turn or multimodal history.\n\n## Response shape\n\n```json\n{\n  \"id\": \"resp_abc123\",\n  \"object\": \"response\",\n  \"created_at\": 1735689600,\n  \"model\": \"zai-org-glm-5-1\",\n  \"status\": \"completed\",\n  \"output\": [\n    {\n      \"type\": \"reasoning\",\n      \"id\": \"rs_1\",\n      \"summary\": [\"I considered Rayleigh scattering...\"],\n      \"encrypted_content\": \"...\"\n    },\n    {\n      \"type\": \"message\",\n      \"id\": \"msg_1\",\n      \"status\": \"completed\",\n      \"role\": \"assistant\",\n      \"content\": [{\n        \"type\": \"output_text\",\n        \"text\": \"The sky is blue because...\",\n        \"annotations\": [{\n          \"type\": \"url_citation\",\n          \"url\": \"https:\u002F\u002Fexample.com\u002Frayleigh\",\n          \"title\": \"Rayleigh scattering\",\n          \"start_index\": 42,\n          \"end_index\": 99\n        }]\n      }]\n    },\n    {\n      \"type\": \"function_call\",\n      \"id\": \"fc_1\",\n      \"call_id\": \"call_abc\",\n      \"name\": \"get_weather\",\n      \"arguments\": \"{\\\"city\\\":\\\"Paris\\\"}\",\n      \"status\": \"completed\"\n    },\n    {\n      \"type\": \"web_search_call\",\n      \"id\": \"ws_1\",\n      \"status\": \"completed\"\n    }\n  ],\n  \"usage\": {\n    \"input_tokens\": 20,\n    \"input_tokens_details\": {\"cached_tokens\": 0},\n    \"output_tokens\": 80,\n    \"output_tokens_details\": {\"reasoning_tokens\": 40},\n    \"total_tokens\": 100\n  }\n}\n```\n\nTop-level `status` ∈ `completed` | `failed` | `in_progress` | `cancelled`. On `failed`, `error.code` and `error.message` are populated.\n\n## Output block types\n\n| `type` | Purpose |\n|---|---|\n| `reasoning` | Thought process from reasoning models. `summary[]` holds human-readable text; `encrypted_content` holds opaque signatures — round-trip verbatim for multi-turn tool calls. |\n| `message` | Main text output. `content[].type === \"output_text\"`, plus `annotations[]` for `url_citation` entries from web search. |\n| `function_call` | Tool call: `name`, stringified-JSON `arguments`, `call_id`. |\n| `web_search_call` | Sentinel showing the built-in web_search tool fired; use alongside `url_citation` annotations on messages. |\n\nMatch tool outputs back by `call_id` when continuing the turn.\n\n## Common request fields\n\n| Field | Notes |\n|---|---|\n| `model` | Required. Model ID, trait, or compatibility mapping. Feature suffixes allowed (see [`venice-chat`](..\u002Fvenice-chat\u002FSKILL.md#model-feature-suffixes)). |\n| `input` | Required. String or input-items array. To set system\u002Fdeveloper context, include a leading message with `role: \"system\"`\u002F`\"developer\"` in the input array. |\n| `tools` | Array of `{type:\"function\",function:{...}}` or built-in `{type:\"web_search\"}` — availability depends on the model. |\n| `tool_choice` | `\"auto\"` \u002F `\"required\"` \u002F `\"none\"` \u002F `{type:\"function\",function:{\"name\":\"...\"}}`. |\n| `reasoning.effort` | Reasoning effort hint for thinking models (`\"low\"` \\| `\"medium\"` \\| `\"high\"`). Mapped to `reasoning_effort`. |\n| `temperature`, `top_p`, `max_output_tokens` | Standard generation controls. `max_output_tokens` maps to `max_tokens`. |\n| `web_search` | Boolean shortcut for enabling web search, equivalent to adding `{\"type\":\"web_search\"}` to `tools` or setting `venice_parameters.enable_web_search`. |\n| `include` | Array of additional response fields to include (OpenAI compat). |\n| `fallbacks` | Up to 10 entries. Anthropic beta parameter for Claude Fable 5 server-side refusal fallback; forwarded only on direct Anthropic routes. |\n| `stream` | Boolean. SSE response with typed events (`response.created`, `response.output_item.added`, `response.output_text.delta`, `response.completed`, …). |\n| `venice_parameters` | Subset listed above. Example: `{\"character_slug\":\"alan-watts\",\"enable_web_search\":\"on\"}`. |\n\n**Silently dropped generation controls.** `n`, `stop`, `seed`, and\n`prompt_cache_key` are not in the Alpha schema and are not translated to\n`\u002Fchat\u002Fcompletions`. The request body is permissive, so sending them does not\nerror — they just never reach inference. If you need reproducible sampling\n(`seed`), stop sequences, or explicit cache routing, stay on\n`\u002Fchat\u002Fcompletions`.\n\nFields commonly found in OpenAI's Responses API that are **not** in Venice's Alpha schema (and silently ignored or rejected by Zod): `instructions`, `metadata`, `parallel_tool_calls`, `response_format`, `store`, `previous_response_id`, `background`. For `response_format` \u002F JSON-schema structured output, use `\u002Fchat\u002Fcompletions`.\n\n## Streaming\n\nWith `stream: true`, the response is an SSE stream of typed events. Typical flow:\n\n```\nevent: response.created\nevent: response.output_item.added        # type=reasoning\nevent: response.reasoning.delta\nevent: response.output_item.added        # type=message\nevent: response.content_part.added\nevent: response.output_text.delta\nevent: response.output_text.delta\nevent: response.output_item.done\nevent: response.completed\n```\n\nConsume events in order and reconstruct `output[]` client-side; the shape on `response.completed` matches the non-streamed response exactly.\n\n## Authentication & error responses\n\n- `400` — bad request; also returned when an E2EE-capable model is used without `venice_parameters.enable_e2ee: false`.\n- `401` — auth failed, or Bearer key lacks `responsesApiEnabled`, or the model is Pro-only and you're on an INFERENCE key \u002F x402 wallet.\n- `402` — insufficient balance. Bearer → `{ error: \"INSUFFICIENT_BALANCE\" }`. x402 → `PAYMENT_REQUIRED` with `topUpInstructions` and `siwxChallenge` (see [`venice-x402`](..\u002Fvenice-x402\u002FSKILL.md)).\n- `429` — rate-limited.\n- `500` — inference failed.\n\n`X-Balance-Remaining` is on 200 responses when using x402 auth; `PAYMENT-REQUIRED` header on 402.\n\n## Migration notes\n\n- Port `messages` → pass as `input` (string, or typed array with leading `{role:\"system\"|\"developer\", content:\"...\"}`).\n- `venice_parameters.character_slug` → **supported**; pass inside `venice_parameters` or as a model feature suffix (`:character_slug=alan-watts`).\n- `venice_parameters.enable_web_search` → pass inside `venice_parameters`, or append `:enable_web_search=on` to the model ID, or add `{\"type\":\"web_search\"}` to `tools`.\n- `venice_parameters.strip_thinking_response` \u002F `disable_thinking` → **not supported on `\u002Fresponses`** in Alpha; stay on `\u002Fchat\u002Fcompletions` for these.\n- Full E2EE flow (E2EE request headers + encrypted response) → stay on `\u002Fchat\u002Fcompletions`. For TEE-only inference on an E2EE-capable model, pass `venice_parameters.enable_e2ee: false` here.\n- `response_format` \u002F JSON-schema structured output → stay on `\u002Fchat\u002Fcompletions`.\n",{"data":32,"body":33},{"name":4,"description":6},{"type":34,"children":35},"root",[36,45,74,96,103,139,157,169,383,389,421,427,572,583,604,610,2123,2186,2192,2345,2357,2363,2754,2814,2888,2894,2907,2917,2936,2942,3053,3072,3078,3248],{"type":37,"tag":38,"props":39,"children":41},"element","h1",{"id":40},"venice-responses-api-alpha",[42],{"type":43,"value":44},"text","Venice Responses API (Alpha)",{"type":37,"tag":46,"props":47,"children":48},"p",{},[49,56,58,64,66,72],{"type":37,"tag":50,"props":51,"children":53},"code",{"className":52},[],[54],{"type":43,"value":55},"POST \u002Fapi\u002Fv1\u002Fresponses",{"type":43,"value":57}," is Venice's OpenAI-compatible Responses endpoint. It returns a ",{"type":37,"tag":59,"props":60,"children":61},"strong",{},[62],{"type":43,"value":63},"structured, typed output array",{"type":43,"value":65}," instead of a single ",{"type":37,"tag":50,"props":67,"children":69},{"className":68},[],[70],{"type":43,"value":71},"message.content",{"type":43,"value":73}," string — ideal for agents that need to separate reasoning, messages, tool calls, and built-in tool events.",{"type":37,"tag":75,"props":76,"children":77},"blockquote",{},[78],{"type":37,"tag":46,"props":79,"children":80},{},[81,86,88,94],{"type":37,"tag":59,"props":82,"children":83},{},[84],{"type":43,"value":85},"Alpha.",{"type":43,"value":87}," Access is gated behind the ",{"type":37,"tag":50,"props":89,"children":91},{"className":90},[],[92],{"type":43,"value":93},"responsesApiEnabled",{"type":43,"value":95}," flag on Bearer API keys (staff-only during beta). x402 wallet auth bypasses this flag — you can pay per request without the flag. Schemas may change.",{"type":37,"tag":97,"props":98,"children":100},"h2",{"id":99},"use-when",[101],{"type":43,"value":102},"Use when",{"type":37,"tag":104,"props":105,"children":106},"ul",{},[107,129,134],{"type":37,"tag":108,"props":109,"children":110},"li",{},[111,113,119,121,127],{"type":43,"value":112},"You need the OpenAI Responses-style response shape (",{"type":37,"tag":50,"props":114,"children":116},{"className":115},[],[117],{"type":43,"value":118},"output[]",{"type":43,"value":120}," with typed ",{"type":37,"tag":50,"props":122,"children":124},{"className":123},[],[125],{"type":43,"value":126},"type: \"reasoning\" | \"message\" | \"function_call\" | \"web_search_call\"",{"type":43,"value":128}," blocks) for a client library that expects it.",{"type":37,"tag":108,"props":130,"children":131},{},[132],{"type":43,"value":133},"You want clean separation of reasoning vs message vs tool-call output.",{"type":37,"tag":108,"props":135,"children":136},{},[137],{"type":43,"value":138},"You want streaming via SSE with typed events.",{"type":37,"tag":46,"props":140,"children":141},{},[142,144,155],{"type":43,"value":143},"Otherwise use ",{"type":37,"tag":145,"props":146,"children":148},"a",{"href":147},"..\u002Fvenice-chat\u002FSKILL.md",[149],{"type":37,"tag":50,"props":150,"children":152},{"className":151},[],[153],{"type":43,"value":154},"venice-chat",{"type":43,"value":156}," — it has more features, more models, and full Venice parameters.",{"type":37,"tag":97,"props":158,"children":160},{"id":159},"limitations-vs-chatcompletions",[161,163],{"type":43,"value":162},"Limitations vs ",{"type":37,"tag":50,"props":164,"children":166},{"className":165},[],[167],{"type":43,"value":168},"\u002Fchat\u002Fcompletions",{"type":37,"tag":170,"props":171,"children":172},"table",{},[173,192],{"type":37,"tag":174,"props":175,"children":176},"thead",{},[177],{"type":37,"tag":178,"props":179,"children":180},"tr",{},[181,187],{"type":37,"tag":182,"props":183,"children":184},"th",{},[185],{"type":43,"value":186},"Limitation",{"type":37,"tag":182,"props":188,"children":189},{},[190],{"type":43,"value":191},"Detail",{"type":37,"tag":193,"props":194,"children":195},"tbody",{},[196,213,252,352],{"type":37,"tag":178,"props":197,"children":198},{},[199,208],{"type":37,"tag":200,"props":201,"children":202},"td",{},[203],{"type":37,"tag":59,"props":204,"children":205},{},[206],{"type":43,"value":207},"Stateless",{"type":37,"tag":200,"props":209,"children":210},{},[211],{"type":43,"value":212},"No conversation persistence across requests. Send the full history each call.",{"type":37,"tag":178,"props":214,"children":215},{},[216,224],{"type":37,"tag":200,"props":217,"children":218},{},[219],{"type":37,"tag":59,"props":220,"children":221},{},[222],{"type":43,"value":223},"E2EE models default to rejection",{"type":37,"tag":200,"props":225,"children":226},{},[227,229,235,237,243,245,250],{"type":43,"value":228},"E2EE-capable models return ",{"type":37,"tag":50,"props":230,"children":232},{"className":231},[],[233],{"type":43,"value":234},"400",{"type":43,"value":236}," unless you pass ",{"type":37,"tag":50,"props":238,"children":240},{"className":239},[],[241],{"type":43,"value":242},"venice_parameters.enable_e2ee: false",{"type":43,"value":244}," (TEE-only mode). For end-to-end encrypted inference with E2EE headers, use ",{"type":37,"tag":50,"props":246,"children":248},{"className":247},[],[249],{"type":43,"value":168},{"type":43,"value":251},".",{"type":37,"tag":178,"props":253,"children":254},{},[255,269],{"type":37,"tag":200,"props":256,"children":257},{},[258],{"type":37,"tag":59,"props":259,"children":260},{},[261,263],{"type":43,"value":262},"Subset of ",{"type":37,"tag":50,"props":264,"children":266},{"className":265},[],[267],{"type":43,"value":268},"venice_parameters",{"type":37,"tag":200,"props":270,"children":271},{},[272,278,280,286,287,293,294,300,301,307,308,314,315,321,323,329,330,336,337,343,345,350],{"type":37,"tag":50,"props":273,"children":275},{"className":274},[],[276],{"type":43,"value":277},"character_slug",{"type":43,"value":279},", ",{"type":37,"tag":50,"props":281,"children":283},{"className":282},[],[284],{"type":43,"value":285},"enable_e2ee",{"type":43,"value":279},{"type":37,"tag":50,"props":288,"children":290},{"className":289},[],[291],{"type":43,"value":292},"enable_web_search",{"type":43,"value":279},{"type":37,"tag":50,"props":295,"children":297},{"className":296},[],[298],{"type":43,"value":299},"enable_web_scraping",{"type":43,"value":279},{"type":37,"tag":50,"props":302,"children":304},{"className":303},[],[305],{"type":43,"value":306},"enable_web_citations",{"type":43,"value":279},{"type":37,"tag":50,"props":309,"children":311},{"className":310},[],[312],{"type":43,"value":313},"include_venice_system_prompt",{"type":43,"value":279},{"type":37,"tag":50,"props":316,"children":318},{"className":317},[],[319],{"type":43,"value":320},"include_search_results_in_stream",{"type":43,"value":322}," are supported. ",{"type":37,"tag":50,"props":324,"children":326},{"className":325},[],[327],{"type":43,"value":328},"strip_thinking_response",{"type":43,"value":279},{"type":37,"tag":50,"props":331,"children":333},{"className":332},[],[334],{"type":43,"value":335},"disable_thinking",{"type":43,"value":279},{"type":37,"tag":50,"props":338,"children":340},{"className":339},[],[341],{"type":43,"value":342},"enable_x_search",{"type":43,"value":344}," are ",{"type":37,"tag":59,"props":346,"children":347},{},[348],{"type":43,"value":349},"not",{"type":43,"value":351}," wired through in Alpha.",{"type":37,"tag":178,"props":353,"children":354},{},[355,363],{"type":37,"tag":200,"props":356,"children":357},{},[358],{"type":37,"tag":59,"props":359,"children":360},{},[361],{"type":43,"value":362},"Access gated by feature flag",{"type":37,"tag":200,"props":364,"children":365},{},[366,368,373,375,381],{"type":43,"value":367},"Bearer keys without ",{"type":37,"tag":50,"props":369,"children":371},{"className":370},[],[372],{"type":43,"value":93},{"type":43,"value":374}," get ",{"type":37,"tag":50,"props":376,"children":378},{"className":377},[],[379],{"type":43,"value":380},"401",{"type":43,"value":382},". x402 requests are allowed (pay-per-call).",{"type":37,"tag":97,"props":384,"children":386},{"id":385},"authentication",[387],{"type":43,"value":388},"Authentication",{"type":37,"tag":46,"props":390,"children":391},{},[392,394,400,402,408,410,420],{"type":43,"value":393},"Same as the rest of the API — either ",{"type":37,"tag":50,"props":395,"children":397},{"className":396},[],[398],{"type":43,"value":399},"Authorization: Bearer \u003Ckey>",{"type":43,"value":401}," or ",{"type":37,"tag":50,"props":403,"children":405},{"className":404},[],[406],{"type":43,"value":407},"SIGN-IN-WITH-X: \u003CSIWX>",{"type":43,"value":409},". See ",{"type":37,"tag":145,"props":411,"children":413},{"href":412},"..\u002Fvenice-auth\u002FSKILL.md",[414],{"type":37,"tag":50,"props":415,"children":417},{"className":416},[],[418],{"type":43,"value":419},"venice-auth",{"type":43,"value":251},{"type":37,"tag":97,"props":422,"children":424},{"id":423},"minimal-request",[425],{"type":43,"value":426},"Minimal request",{"type":37,"tag":428,"props":429,"children":434},"pre",{"className":430,"code":431,"language":432,"meta":433,"style":433},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fresponses \\\n  -H \"Authorization: Bearer $VENICE_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"model\": \"zai-org-glm-5-1\",\n    \"input\": \"Explain why the sky is blue in one paragraph.\"\n  }'\n","bash","",[435],{"type":37,"tag":50,"props":436,"children":437},{"__ignoreMap":433},[438,462,496,521,540,549,558],{"type":37,"tag":439,"props":440,"children":443},"span",{"class":441,"line":442},"line",1,[444,450,456],{"type":37,"tag":439,"props":445,"children":447},{"style":446},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[448],{"type":43,"value":449},"curl",{"type":37,"tag":439,"props":451,"children":453},{"style":452},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[454],{"type":43,"value":455}," https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fresponses",{"type":37,"tag":439,"props":457,"children":459},{"style":458},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[460],{"type":43,"value":461}," \\\n",{"type":37,"tag":439,"props":463,"children":465},{"class":441,"line":464},2,[466,471,477,482,487,492],{"type":37,"tag":439,"props":467,"children":468},{"style":452},[469],{"type":43,"value":470},"  -H",{"type":37,"tag":439,"props":472,"children":474},{"style":473},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[475],{"type":43,"value":476}," \"",{"type":37,"tag":439,"props":478,"children":479},{"style":452},[480],{"type":43,"value":481},"Authorization: Bearer ",{"type":37,"tag":439,"props":483,"children":484},{"style":458},[485],{"type":43,"value":486},"$VENICE_API_KEY",{"type":37,"tag":439,"props":488,"children":489},{"style":473},[490],{"type":43,"value":491},"\"",{"type":37,"tag":439,"props":493,"children":494},{"style":458},[495],{"type":43,"value":461},{"type":37,"tag":439,"props":497,"children":499},{"class":441,"line":498},3,[500,504,508,513,517],{"type":37,"tag":439,"props":501,"children":502},{"style":452},[503],{"type":43,"value":470},{"type":37,"tag":439,"props":505,"children":506},{"style":473},[507],{"type":43,"value":476},{"type":37,"tag":439,"props":509,"children":510},{"style":452},[511],{"type":43,"value":512},"Content-Type: application\u002Fjson",{"type":37,"tag":439,"props":514,"children":515},{"style":473},[516],{"type":43,"value":491},{"type":37,"tag":439,"props":518,"children":519},{"style":458},[520],{"type":43,"value":461},{"type":37,"tag":439,"props":522,"children":524},{"class":441,"line":523},4,[525,530,535],{"type":37,"tag":439,"props":526,"children":527},{"style":452},[528],{"type":43,"value":529},"  -d",{"type":37,"tag":439,"props":531,"children":532},{"style":473},[533],{"type":43,"value":534}," '",{"type":37,"tag":439,"props":536,"children":537},{"style":452},[538],{"type":43,"value":539},"{\n",{"type":37,"tag":439,"props":541,"children":543},{"class":441,"line":542},5,[544],{"type":37,"tag":439,"props":545,"children":546},{"style":452},[547],{"type":43,"value":548},"    \"model\": \"zai-org-glm-5-1\",\n",{"type":37,"tag":439,"props":550,"children":552},{"class":441,"line":551},6,[553],{"type":37,"tag":439,"props":554,"children":555},{"style":452},[556],{"type":43,"value":557},"    \"input\": \"Explain why the sky is blue in one paragraph.\"\n",{"type":37,"tag":439,"props":559,"children":561},{"class":441,"line":560},7,[562,567],{"type":37,"tag":439,"props":563,"children":564},{"style":452},[565],{"type":43,"value":566},"  }",{"type":37,"tag":439,"props":568,"children":569},{"style":473},[570],{"type":43,"value":571},"'\n",{"type":37,"tag":46,"props":573,"children":574},{},[575,581],{"type":37,"tag":50,"props":576,"children":578},{"className":577},[],[579],{"type":43,"value":580},"input",{"type":43,"value":582}," accepts:",{"type":37,"tag":104,"props":584,"children":585},{},[586,591],{"type":37,"tag":108,"props":587,"children":588},{},[589],{"type":43,"value":590},"a plain string, or",{"type":37,"tag":108,"props":592,"children":593},{},[594,596,602],{"type":43,"value":595},"an array of typed input items (similar to ",{"type":37,"tag":50,"props":597,"children":599},{"className":598},[],[600],{"type":43,"value":601},"chat\u002Fcompletions",{"type":43,"value":603}," message parts) for multi-turn or multimodal history.",{"type":37,"tag":97,"props":605,"children":607},{"id":606},"response-shape",[608],{"type":43,"value":609},"Response shape",{"type":37,"tag":428,"props":611,"children":615},{"className":612,"code":613,"language":614,"meta":433,"style":433},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"id\": \"resp_abc123\",\n  \"object\": \"response\",\n  \"created_at\": 1735689600,\n  \"model\": \"zai-org-glm-5-1\",\n  \"status\": \"completed\",\n  \"output\": [\n    {\n      \"type\": \"reasoning\",\n      \"id\": \"rs_1\",\n      \"summary\": [\"I considered Rayleigh scattering...\"],\n      \"encrypted_content\": \"...\"\n    },\n    {\n      \"type\": \"message\",\n      \"id\": \"msg_1\",\n      \"status\": \"completed\",\n      \"role\": \"assistant\",\n      \"content\": [{\n        \"type\": \"output_text\",\n        \"text\": \"The sky is blue because...\",\n        \"annotations\": [{\n          \"type\": \"url_citation\",\n          \"url\": \"https:\u002F\u002Fexample.com\u002Frayleigh\",\n          \"title\": \"Rayleigh scattering\",\n          \"start_index\": 42,\n          \"end_index\": 99\n        }]\n      }]\n    },\n    {\n      \"type\": \"function_call\",\n      \"id\": \"fc_1\",\n      \"call_id\": \"call_abc\",\n      \"name\": \"get_weather\",\n      \"arguments\": \"{\\\"city\\\":\\\"Paris\\\"}\",\n      \"status\": \"completed\"\n    },\n    {\n      \"type\": \"web_search_call\",\n      \"id\": \"ws_1\",\n      \"status\": \"completed\"\n    }\n  ],\n  \"usage\": {\n    \"input_tokens\": 20,\n    \"input_tokens_details\": {\"cached_tokens\": 0},\n    \"output_tokens\": 80,\n    \"output_tokens_details\": {\"reasoning_tokens\": 40},\n    \"total_tokens\": 100\n  }\n}\n","json",[616],{"type":37,"tag":50,"props":617,"children":618},{"__ignoreMap":433},[619,626,667,704,734,771,808,833,842,881,918,962,997,1006,1014,1050,1087,1123,1161,1187,1225,1262,1287,1326,1364,1402,1432,1458,1467,1476,1484,1492,1529,1566,1604,1642,1716,1748,1756,1764,1801,1838,1870,1879,1888,1914,1945,1998,2028,2079,2105,2114],{"type":37,"tag":439,"props":620,"children":621},{"class":441,"line":442},[622],{"type":37,"tag":439,"props":623,"children":624},{"style":473},[625],{"type":43,"value":539},{"type":37,"tag":439,"props":627,"children":628},{"class":441,"line":464},[629,634,640,644,649,653,658,662],{"type":37,"tag":439,"props":630,"children":631},{"style":473},[632],{"type":43,"value":633},"  \"",{"type":37,"tag":439,"props":635,"children":637},{"style":636},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[638],{"type":43,"value":639},"id",{"type":37,"tag":439,"props":641,"children":642},{"style":473},[643],{"type":43,"value":491},{"type":37,"tag":439,"props":645,"children":646},{"style":473},[647],{"type":43,"value":648},":",{"type":37,"tag":439,"props":650,"children":651},{"style":473},[652],{"type":43,"value":476},{"type":37,"tag":439,"props":654,"children":655},{"style":452},[656],{"type":43,"value":657},"resp_abc123",{"type":37,"tag":439,"props":659,"children":660},{"style":473},[661],{"type":43,"value":491},{"type":37,"tag":439,"props":663,"children":664},{"style":473},[665],{"type":43,"value":666},",\n",{"type":37,"tag":439,"props":668,"children":669},{"class":441,"line":498},[670,674,679,683,687,691,696,700],{"type":37,"tag":439,"props":671,"children":672},{"style":473},[673],{"type":43,"value":633},{"type":37,"tag":439,"props":675,"children":676},{"style":636},[677],{"type":43,"value":678},"object",{"type":37,"tag":439,"props":680,"children":681},{"style":473},[682],{"type":43,"value":491},{"type":37,"tag":439,"props":684,"children":685},{"style":473},[686],{"type":43,"value":648},{"type":37,"tag":439,"props":688,"children":689},{"style":473},[690],{"type":43,"value":476},{"type":37,"tag":439,"props":692,"children":693},{"style":452},[694],{"type":43,"value":695},"response",{"type":37,"tag":439,"props":697,"children":698},{"style":473},[699],{"type":43,"value":491},{"type":37,"tag":439,"props":701,"children":702},{"style":473},[703],{"type":43,"value":666},{"type":37,"tag":439,"props":705,"children":706},{"class":441,"line":523},[707,711,716,720,724,730],{"type":37,"tag":439,"props":708,"children":709},{"style":473},[710],{"type":43,"value":633},{"type":37,"tag":439,"props":712,"children":713},{"style":636},[714],{"type":43,"value":715},"created_at",{"type":37,"tag":439,"props":717,"children":718},{"style":473},[719],{"type":43,"value":491},{"type":37,"tag":439,"props":721,"children":722},{"style":473},[723],{"type":43,"value":648},{"type":37,"tag":439,"props":725,"children":727},{"style":726},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[728],{"type":43,"value":729}," 1735689600",{"type":37,"tag":439,"props":731,"children":732},{"style":473},[733],{"type":43,"value":666},{"type":37,"tag":439,"props":735,"children":736},{"class":441,"line":542},[737,741,746,750,754,758,763,767],{"type":37,"tag":439,"props":738,"children":739},{"style":473},[740],{"type":43,"value":633},{"type":37,"tag":439,"props":742,"children":743},{"style":636},[744],{"type":43,"value":745},"model",{"type":37,"tag":439,"props":747,"children":748},{"style":473},[749],{"type":43,"value":491},{"type":37,"tag":439,"props":751,"children":752},{"style":473},[753],{"type":43,"value":648},{"type":37,"tag":439,"props":755,"children":756},{"style":473},[757],{"type":43,"value":476},{"type":37,"tag":439,"props":759,"children":760},{"style":452},[761],{"type":43,"value":762},"zai-org-glm-5-1",{"type":37,"tag":439,"props":764,"children":765},{"style":473},[766],{"type":43,"value":491},{"type":37,"tag":439,"props":768,"children":769},{"style":473},[770],{"type":43,"value":666},{"type":37,"tag":439,"props":772,"children":773},{"class":441,"line":551},[774,778,783,787,791,795,800,804],{"type":37,"tag":439,"props":775,"children":776},{"style":473},[777],{"type":43,"value":633},{"type":37,"tag":439,"props":779,"children":780},{"style":636},[781],{"type":43,"value":782},"status",{"type":37,"tag":439,"props":784,"children":785},{"style":473},[786],{"type":43,"value":491},{"type":37,"tag":439,"props":788,"children":789},{"style":473},[790],{"type":43,"value":648},{"type":37,"tag":439,"props":792,"children":793},{"style":473},[794],{"type":43,"value":476},{"type":37,"tag":439,"props":796,"children":797},{"style":452},[798],{"type":43,"value":799},"completed",{"type":37,"tag":439,"props":801,"children":802},{"style":473},[803],{"type":43,"value":491},{"type":37,"tag":439,"props":805,"children":806},{"style":473},[807],{"type":43,"value":666},{"type":37,"tag":439,"props":809,"children":810},{"class":441,"line":560},[811,815,820,824,828],{"type":37,"tag":439,"props":812,"children":813},{"style":473},[814],{"type":43,"value":633},{"type":37,"tag":439,"props":816,"children":817},{"style":636},[818],{"type":43,"value":819},"output",{"type":37,"tag":439,"props":821,"children":822},{"style":473},[823],{"type":43,"value":491},{"type":37,"tag":439,"props":825,"children":826},{"style":473},[827],{"type":43,"value":648},{"type":37,"tag":439,"props":829,"children":830},{"style":473},[831],{"type":43,"value":832}," [\n",{"type":37,"tag":439,"props":834,"children":836},{"class":441,"line":835},8,[837],{"type":37,"tag":439,"props":838,"children":839},{"style":473},[840],{"type":43,"value":841},"    {\n",{"type":37,"tag":439,"props":843,"children":845},{"class":441,"line":844},9,[846,851,856,860,864,868,873,877],{"type":37,"tag":439,"props":847,"children":848},{"style":473},[849],{"type":43,"value":850},"      \"",{"type":37,"tag":439,"props":852,"children":853},{"style":446},[854],{"type":43,"value":855},"type",{"type":37,"tag":439,"props":857,"children":858},{"style":473},[859],{"type":43,"value":491},{"type":37,"tag":439,"props":861,"children":862},{"style":473},[863],{"type":43,"value":648},{"type":37,"tag":439,"props":865,"children":866},{"style":473},[867],{"type":43,"value":476},{"type":37,"tag":439,"props":869,"children":870},{"style":452},[871],{"type":43,"value":872},"reasoning",{"type":37,"tag":439,"props":874,"children":875},{"style":473},[876],{"type":43,"value":491},{"type":37,"tag":439,"props":878,"children":879},{"style":473},[880],{"type":43,"value":666},{"type":37,"tag":439,"props":882,"children":884},{"class":441,"line":883},10,[885,889,893,897,901,905,910,914],{"type":37,"tag":439,"props":886,"children":887},{"style":473},[888],{"type":43,"value":850},{"type":37,"tag":439,"props":890,"children":891},{"style":446},[892],{"type":43,"value":639},{"type":37,"tag":439,"props":894,"children":895},{"style":473},[896],{"type":43,"value":491},{"type":37,"tag":439,"props":898,"children":899},{"style":473},[900],{"type":43,"value":648},{"type":37,"tag":439,"props":902,"children":903},{"style":473},[904],{"type":43,"value":476},{"type":37,"tag":439,"props":906,"children":907},{"style":452},[908],{"type":43,"value":909},"rs_1",{"type":37,"tag":439,"props":911,"children":912},{"style":473},[913],{"type":43,"value":491},{"type":37,"tag":439,"props":915,"children":916},{"style":473},[917],{"type":43,"value":666},{"type":37,"tag":439,"props":919,"children":921},{"class":441,"line":920},11,[922,926,931,935,939,944,948,953,957],{"type":37,"tag":439,"props":923,"children":924},{"style":473},[925],{"type":43,"value":850},{"type":37,"tag":439,"props":927,"children":928},{"style":446},[929],{"type":43,"value":930},"summary",{"type":37,"tag":439,"props":932,"children":933},{"style":473},[934],{"type":43,"value":491},{"type":37,"tag":439,"props":936,"children":937},{"style":473},[938],{"type":43,"value":648},{"type":37,"tag":439,"props":940,"children":941},{"style":473},[942],{"type":43,"value":943}," [",{"type":37,"tag":439,"props":945,"children":946},{"style":473},[947],{"type":43,"value":491},{"type":37,"tag":439,"props":949,"children":950},{"style":452},[951],{"type":43,"value":952},"I considered Rayleigh scattering...",{"type":37,"tag":439,"props":954,"children":955},{"style":473},[956],{"type":43,"value":491},{"type":37,"tag":439,"props":958,"children":959},{"style":473},[960],{"type":43,"value":961},"],\n",{"type":37,"tag":439,"props":963,"children":965},{"class":441,"line":964},12,[966,970,975,979,983,987,992],{"type":37,"tag":439,"props":967,"children":968},{"style":473},[969],{"type":43,"value":850},{"type":37,"tag":439,"props":971,"children":972},{"style":446},[973],{"type":43,"value":974},"encrypted_content",{"type":37,"tag":439,"props":976,"children":977},{"style":473},[978],{"type":43,"value":491},{"type":37,"tag":439,"props":980,"children":981},{"style":473},[982],{"type":43,"value":648},{"type":37,"tag":439,"props":984,"children":985},{"style":473},[986],{"type":43,"value":476},{"type":37,"tag":439,"props":988,"children":989},{"style":452},[990],{"type":43,"value":991},"...",{"type":37,"tag":439,"props":993,"children":994},{"style":473},[995],{"type":43,"value":996},"\"\n",{"type":37,"tag":439,"props":998,"children":1000},{"class":441,"line":999},13,[1001],{"type":37,"tag":439,"props":1002,"children":1003},{"style":473},[1004],{"type":43,"value":1005},"    },\n",{"type":37,"tag":439,"props":1007,"children":1009},{"class":441,"line":1008},14,[1010],{"type":37,"tag":439,"props":1011,"children":1012},{"style":473},[1013],{"type":43,"value":841},{"type":37,"tag":439,"props":1015,"children":1016},{"class":441,"line":24},[1017,1021,1025,1029,1033,1037,1042,1046],{"type":37,"tag":439,"props":1018,"children":1019},{"style":473},[1020],{"type":43,"value":850},{"type":37,"tag":439,"props":1022,"children":1023},{"style":446},[1024],{"type":43,"value":855},{"type":37,"tag":439,"props":1026,"children":1027},{"style":473},[1028],{"type":43,"value":491},{"type":37,"tag":439,"props":1030,"children":1031},{"style":473},[1032],{"type":43,"value":648},{"type":37,"tag":439,"props":1034,"children":1035},{"style":473},[1036],{"type":43,"value":476},{"type":37,"tag":439,"props":1038,"children":1039},{"style":452},[1040],{"type":43,"value":1041},"message",{"type":37,"tag":439,"props":1043,"children":1044},{"style":473},[1045],{"type":43,"value":491},{"type":37,"tag":439,"props":1047,"children":1048},{"style":473},[1049],{"type":43,"value":666},{"type":37,"tag":439,"props":1051,"children":1053},{"class":441,"line":1052},16,[1054,1058,1062,1066,1070,1074,1079,1083],{"type":37,"tag":439,"props":1055,"children":1056},{"style":473},[1057],{"type":43,"value":850},{"type":37,"tag":439,"props":1059,"children":1060},{"style":446},[1061],{"type":43,"value":639},{"type":37,"tag":439,"props":1063,"children":1064},{"style":473},[1065],{"type":43,"value":491},{"type":37,"tag":439,"props":1067,"children":1068},{"style":473},[1069],{"type":43,"value":648},{"type":37,"tag":439,"props":1071,"children":1072},{"style":473},[1073],{"type":43,"value":476},{"type":37,"tag":439,"props":1075,"children":1076},{"style":452},[1077],{"type":43,"value":1078},"msg_1",{"type":37,"tag":439,"props":1080,"children":1081},{"style":473},[1082],{"type":43,"value":491},{"type":37,"tag":439,"props":1084,"children":1085},{"style":473},[1086],{"type":43,"value":666},{"type":37,"tag":439,"props":1088,"children":1090},{"class":441,"line":1089},17,[1091,1095,1099,1103,1107,1111,1115,1119],{"type":37,"tag":439,"props":1092,"children":1093},{"style":473},[1094],{"type":43,"value":850},{"type":37,"tag":439,"props":1096,"children":1097},{"style":446},[1098],{"type":43,"value":782},{"type":37,"tag":439,"props":1100,"children":1101},{"style":473},[1102],{"type":43,"value":491},{"type":37,"tag":439,"props":1104,"children":1105},{"style":473},[1106],{"type":43,"value":648},{"type":37,"tag":439,"props":1108,"children":1109},{"style":473},[1110],{"type":43,"value":476},{"type":37,"tag":439,"props":1112,"children":1113},{"style":452},[1114],{"type":43,"value":799},{"type":37,"tag":439,"props":1116,"children":1117},{"style":473},[1118],{"type":43,"value":491},{"type":37,"tag":439,"props":1120,"children":1121},{"style":473},[1122],{"type":43,"value":666},{"type":37,"tag":439,"props":1124,"children":1126},{"class":441,"line":1125},18,[1127,1131,1136,1140,1144,1148,1153,1157],{"type":37,"tag":439,"props":1128,"children":1129},{"style":473},[1130],{"type":43,"value":850},{"type":37,"tag":439,"props":1132,"children":1133},{"style":446},[1134],{"type":43,"value":1135},"role",{"type":37,"tag":439,"props":1137,"children":1138},{"style":473},[1139],{"type":43,"value":491},{"type":37,"tag":439,"props":1141,"children":1142},{"style":473},[1143],{"type":43,"value":648},{"type":37,"tag":439,"props":1145,"children":1146},{"style":473},[1147],{"type":43,"value":476},{"type":37,"tag":439,"props":1149,"children":1150},{"style":452},[1151],{"type":43,"value":1152},"assistant",{"type":37,"tag":439,"props":1154,"children":1155},{"style":473},[1156],{"type":43,"value":491},{"type":37,"tag":439,"props":1158,"children":1159},{"style":473},[1160],{"type":43,"value":666},{"type":37,"tag":439,"props":1162,"children":1164},{"class":441,"line":1163},19,[1165,1169,1174,1178,1182],{"type":37,"tag":439,"props":1166,"children":1167},{"style":473},[1168],{"type":43,"value":850},{"type":37,"tag":439,"props":1170,"children":1171},{"style":446},[1172],{"type":43,"value":1173},"content",{"type":37,"tag":439,"props":1175,"children":1176},{"style":473},[1177],{"type":43,"value":491},{"type":37,"tag":439,"props":1179,"children":1180},{"style":473},[1181],{"type":43,"value":648},{"type":37,"tag":439,"props":1183,"children":1184},{"style":473},[1185],{"type":43,"value":1186}," [{\n",{"type":37,"tag":439,"props":1188,"children":1190},{"class":441,"line":1189},20,[1191,1196,1200,1204,1208,1212,1217,1221],{"type":37,"tag":439,"props":1192,"children":1193},{"style":473},[1194],{"type":43,"value":1195},"        \"",{"type":37,"tag":439,"props":1197,"children":1198},{"style":726},[1199],{"type":43,"value":855},{"type":37,"tag":439,"props":1201,"children":1202},{"style":473},[1203],{"type":43,"value":491},{"type":37,"tag":439,"props":1205,"children":1206},{"style":473},[1207],{"type":43,"value":648},{"type":37,"tag":439,"props":1209,"children":1210},{"style":473},[1211],{"type":43,"value":476},{"type":37,"tag":439,"props":1213,"children":1214},{"style":452},[1215],{"type":43,"value":1216},"output_text",{"type":37,"tag":439,"props":1218,"children":1219},{"style":473},[1220],{"type":43,"value":491},{"type":37,"tag":439,"props":1222,"children":1223},{"style":473},[1224],{"type":43,"value":666},{"type":37,"tag":439,"props":1226,"children":1228},{"class":441,"line":1227},21,[1229,1233,1237,1241,1245,1249,1254,1258],{"type":37,"tag":439,"props":1230,"children":1231},{"style":473},[1232],{"type":43,"value":1195},{"type":37,"tag":439,"props":1234,"children":1235},{"style":726},[1236],{"type":43,"value":43},{"type":37,"tag":439,"props":1238,"children":1239},{"style":473},[1240],{"type":43,"value":491},{"type":37,"tag":439,"props":1242,"children":1243},{"style":473},[1244],{"type":43,"value":648},{"type":37,"tag":439,"props":1246,"children":1247},{"style":473},[1248],{"type":43,"value":476},{"type":37,"tag":439,"props":1250,"children":1251},{"style":452},[1252],{"type":43,"value":1253},"The sky is blue because...",{"type":37,"tag":439,"props":1255,"children":1256},{"style":473},[1257],{"type":43,"value":491},{"type":37,"tag":439,"props":1259,"children":1260},{"style":473},[1261],{"type":43,"value":666},{"type":37,"tag":439,"props":1263,"children":1265},{"class":441,"line":1264},22,[1266,1270,1275,1279,1283],{"type":37,"tag":439,"props":1267,"children":1268},{"style":473},[1269],{"type":43,"value":1195},{"type":37,"tag":439,"props":1271,"children":1272},{"style":726},[1273],{"type":43,"value":1274},"annotations",{"type":37,"tag":439,"props":1276,"children":1277},{"style":473},[1278],{"type":43,"value":491},{"type":37,"tag":439,"props":1280,"children":1281},{"style":473},[1282],{"type":43,"value":648},{"type":37,"tag":439,"props":1284,"children":1285},{"style":473},[1286],{"type":43,"value":1186},{"type":37,"tag":439,"props":1288,"children":1290},{"class":441,"line":1289},23,[1291,1296,1301,1305,1309,1313,1318,1322],{"type":37,"tag":439,"props":1292,"children":1293},{"style":473},[1294],{"type":43,"value":1295},"          \"",{"type":37,"tag":439,"props":1297,"children":1299},{"style":1298},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1300],{"type":43,"value":855},{"type":37,"tag":439,"props":1302,"children":1303},{"style":473},[1304],{"type":43,"value":491},{"type":37,"tag":439,"props":1306,"children":1307},{"style":473},[1308],{"type":43,"value":648},{"type":37,"tag":439,"props":1310,"children":1311},{"style":473},[1312],{"type":43,"value":476},{"type":37,"tag":439,"props":1314,"children":1315},{"style":452},[1316],{"type":43,"value":1317},"url_citation",{"type":37,"tag":439,"props":1319,"children":1320},{"style":473},[1321],{"type":43,"value":491},{"type":37,"tag":439,"props":1323,"children":1324},{"style":473},[1325],{"type":43,"value":666},{"type":37,"tag":439,"props":1327,"children":1329},{"class":441,"line":1328},24,[1330,1334,1339,1343,1347,1351,1356,1360],{"type":37,"tag":439,"props":1331,"children":1332},{"style":473},[1333],{"type":43,"value":1295},{"type":37,"tag":439,"props":1335,"children":1336},{"style":1298},[1337],{"type":43,"value":1338},"url",{"type":37,"tag":439,"props":1340,"children":1341},{"style":473},[1342],{"type":43,"value":491},{"type":37,"tag":439,"props":1344,"children":1345},{"style":473},[1346],{"type":43,"value":648},{"type":37,"tag":439,"props":1348,"children":1349},{"style":473},[1350],{"type":43,"value":476},{"type":37,"tag":439,"props":1352,"children":1353},{"style":452},[1354],{"type":43,"value":1355},"https:\u002F\u002Fexample.com\u002Frayleigh",{"type":37,"tag":439,"props":1357,"children":1358},{"style":473},[1359],{"type":43,"value":491},{"type":37,"tag":439,"props":1361,"children":1362},{"style":473},[1363],{"type":43,"value":666},{"type":37,"tag":439,"props":1365,"children":1367},{"class":441,"line":1366},25,[1368,1372,1377,1381,1385,1389,1394,1398],{"type":37,"tag":439,"props":1369,"children":1370},{"style":473},[1371],{"type":43,"value":1295},{"type":37,"tag":439,"props":1373,"children":1374},{"style":1298},[1375],{"type":43,"value":1376},"title",{"type":37,"tag":439,"props":1378,"children":1379},{"style":473},[1380],{"type":43,"value":491},{"type":37,"tag":439,"props":1382,"children":1383},{"style":473},[1384],{"type":43,"value":648},{"type":37,"tag":439,"props":1386,"children":1387},{"style":473},[1388],{"type":43,"value":476},{"type":37,"tag":439,"props":1390,"children":1391},{"style":452},[1392],{"type":43,"value":1393},"Rayleigh scattering",{"type":37,"tag":439,"props":1395,"children":1396},{"style":473},[1397],{"type":43,"value":491},{"type":37,"tag":439,"props":1399,"children":1400},{"style":473},[1401],{"type":43,"value":666},{"type":37,"tag":439,"props":1403,"children":1405},{"class":441,"line":1404},26,[1406,1410,1415,1419,1423,1428],{"type":37,"tag":439,"props":1407,"children":1408},{"style":473},[1409],{"type":43,"value":1295},{"type":37,"tag":439,"props":1411,"children":1412},{"style":1298},[1413],{"type":43,"value":1414},"start_index",{"type":37,"tag":439,"props":1416,"children":1417},{"style":473},[1418],{"type":43,"value":491},{"type":37,"tag":439,"props":1420,"children":1421},{"style":473},[1422],{"type":43,"value":648},{"type":37,"tag":439,"props":1424,"children":1425},{"style":726},[1426],{"type":43,"value":1427}," 42",{"type":37,"tag":439,"props":1429,"children":1430},{"style":473},[1431],{"type":43,"value":666},{"type":37,"tag":439,"props":1433,"children":1435},{"class":441,"line":1434},27,[1436,1440,1445,1449,1453],{"type":37,"tag":439,"props":1437,"children":1438},{"style":473},[1439],{"type":43,"value":1295},{"type":37,"tag":439,"props":1441,"children":1442},{"style":1298},[1443],{"type":43,"value":1444},"end_index",{"type":37,"tag":439,"props":1446,"children":1447},{"style":473},[1448],{"type":43,"value":491},{"type":37,"tag":439,"props":1450,"children":1451},{"style":473},[1452],{"type":43,"value":648},{"type":37,"tag":439,"props":1454,"children":1455},{"style":726},[1456],{"type":43,"value":1457}," 99\n",{"type":37,"tag":439,"props":1459,"children":1461},{"class":441,"line":1460},28,[1462],{"type":37,"tag":439,"props":1463,"children":1464},{"style":473},[1465],{"type":43,"value":1466},"        }]\n",{"type":37,"tag":439,"props":1468,"children":1470},{"class":441,"line":1469},29,[1471],{"type":37,"tag":439,"props":1472,"children":1473},{"style":473},[1474],{"type":43,"value":1475},"      }]\n",{"type":37,"tag":439,"props":1477,"children":1479},{"class":441,"line":1478},30,[1480],{"type":37,"tag":439,"props":1481,"children":1482},{"style":473},[1483],{"type":43,"value":1005},{"type":37,"tag":439,"props":1485,"children":1487},{"class":441,"line":1486},31,[1488],{"type":37,"tag":439,"props":1489,"children":1490},{"style":473},[1491],{"type":43,"value":841},{"type":37,"tag":439,"props":1493,"children":1495},{"class":441,"line":1494},32,[1496,1500,1504,1508,1512,1516,1521,1525],{"type":37,"tag":439,"props":1497,"children":1498},{"style":473},[1499],{"type":43,"value":850},{"type":37,"tag":439,"props":1501,"children":1502},{"style":446},[1503],{"type":43,"value":855},{"type":37,"tag":439,"props":1505,"children":1506},{"style":473},[1507],{"type":43,"value":491},{"type":37,"tag":439,"props":1509,"children":1510},{"style":473},[1511],{"type":43,"value":648},{"type":37,"tag":439,"props":1513,"children":1514},{"style":473},[1515],{"type":43,"value":476},{"type":37,"tag":439,"props":1517,"children":1518},{"style":452},[1519],{"type":43,"value":1520},"function_call",{"type":37,"tag":439,"props":1522,"children":1523},{"style":473},[1524],{"type":43,"value":491},{"type":37,"tag":439,"props":1526,"children":1527},{"style":473},[1528],{"type":43,"value":666},{"type":37,"tag":439,"props":1530,"children":1532},{"class":441,"line":1531},33,[1533,1537,1541,1545,1549,1553,1558,1562],{"type":37,"tag":439,"props":1534,"children":1535},{"style":473},[1536],{"type":43,"value":850},{"type":37,"tag":439,"props":1538,"children":1539},{"style":446},[1540],{"type":43,"value":639},{"type":37,"tag":439,"props":1542,"children":1543},{"style":473},[1544],{"type":43,"value":491},{"type":37,"tag":439,"props":1546,"children":1547},{"style":473},[1548],{"type":43,"value":648},{"type":37,"tag":439,"props":1550,"children":1551},{"style":473},[1552],{"type":43,"value":476},{"type":37,"tag":439,"props":1554,"children":1555},{"style":452},[1556],{"type":43,"value":1557},"fc_1",{"type":37,"tag":439,"props":1559,"children":1560},{"style":473},[1561],{"type":43,"value":491},{"type":37,"tag":439,"props":1563,"children":1564},{"style":473},[1565],{"type":43,"value":666},{"type":37,"tag":439,"props":1567,"children":1569},{"class":441,"line":1568},34,[1570,1574,1579,1583,1587,1591,1596,1600],{"type":37,"tag":439,"props":1571,"children":1572},{"style":473},[1573],{"type":43,"value":850},{"type":37,"tag":439,"props":1575,"children":1576},{"style":446},[1577],{"type":43,"value":1578},"call_id",{"type":37,"tag":439,"props":1580,"children":1581},{"style":473},[1582],{"type":43,"value":491},{"type":37,"tag":439,"props":1584,"children":1585},{"style":473},[1586],{"type":43,"value":648},{"type":37,"tag":439,"props":1588,"children":1589},{"style":473},[1590],{"type":43,"value":476},{"type":37,"tag":439,"props":1592,"children":1593},{"style":452},[1594],{"type":43,"value":1595},"call_abc",{"type":37,"tag":439,"props":1597,"children":1598},{"style":473},[1599],{"type":43,"value":491},{"type":37,"tag":439,"props":1601,"children":1602},{"style":473},[1603],{"type":43,"value":666},{"type":37,"tag":439,"props":1605,"children":1607},{"class":441,"line":1606},35,[1608,1612,1617,1621,1625,1629,1634,1638],{"type":37,"tag":439,"props":1609,"children":1610},{"style":473},[1611],{"type":43,"value":850},{"type":37,"tag":439,"props":1613,"children":1614},{"style":446},[1615],{"type":43,"value":1616},"name",{"type":37,"tag":439,"props":1618,"children":1619},{"style":473},[1620],{"type":43,"value":491},{"type":37,"tag":439,"props":1622,"children":1623},{"style":473},[1624],{"type":43,"value":648},{"type":37,"tag":439,"props":1626,"children":1627},{"style":473},[1628],{"type":43,"value":476},{"type":37,"tag":439,"props":1630,"children":1631},{"style":452},[1632],{"type":43,"value":1633},"get_weather",{"type":37,"tag":439,"props":1635,"children":1636},{"style":473},[1637],{"type":43,"value":491},{"type":37,"tag":439,"props":1639,"children":1640},{"style":473},[1641],{"type":43,"value":666},{"type":37,"tag":439,"props":1643,"children":1645},{"class":441,"line":1644},36,[1646,1650,1655,1659,1663,1667,1672,1677,1682,1686,1690,1694,1699,1703,1708,1712],{"type":37,"tag":439,"props":1647,"children":1648},{"style":473},[1649],{"type":43,"value":850},{"type":37,"tag":439,"props":1651,"children":1652},{"style":446},[1653],{"type":43,"value":1654},"arguments",{"type":37,"tag":439,"props":1656,"children":1657},{"style":473},[1658],{"type":43,"value":491},{"type":37,"tag":439,"props":1660,"children":1661},{"style":473},[1662],{"type":43,"value":648},{"type":37,"tag":439,"props":1664,"children":1665},{"style":473},[1666],{"type":43,"value":476},{"type":37,"tag":439,"props":1668,"children":1669},{"style":452},[1670],{"type":43,"value":1671},"{",{"type":37,"tag":439,"props":1673,"children":1674},{"style":458},[1675],{"type":43,"value":1676},"\\\"",{"type":37,"tag":439,"props":1678,"children":1679},{"style":452},[1680],{"type":43,"value":1681},"city",{"type":37,"tag":439,"props":1683,"children":1684},{"style":458},[1685],{"type":43,"value":1676},{"type":37,"tag":439,"props":1687,"children":1688},{"style":452},[1689],{"type":43,"value":648},{"type":37,"tag":439,"props":1691,"children":1692},{"style":458},[1693],{"type":43,"value":1676},{"type":37,"tag":439,"props":1695,"children":1696},{"style":452},[1697],{"type":43,"value":1698},"Paris",{"type":37,"tag":439,"props":1700,"children":1701},{"style":458},[1702],{"type":43,"value":1676},{"type":37,"tag":439,"props":1704,"children":1705},{"style":452},[1706],{"type":43,"value":1707},"}",{"type":37,"tag":439,"props":1709,"children":1710},{"style":473},[1711],{"type":43,"value":491},{"type":37,"tag":439,"props":1713,"children":1714},{"style":473},[1715],{"type":43,"value":666},{"type":37,"tag":439,"props":1717,"children":1719},{"class":441,"line":1718},37,[1720,1724,1728,1732,1736,1740,1744],{"type":37,"tag":439,"props":1721,"children":1722},{"style":473},[1723],{"type":43,"value":850},{"type":37,"tag":439,"props":1725,"children":1726},{"style":446},[1727],{"type":43,"value":782},{"type":37,"tag":439,"props":1729,"children":1730},{"style":473},[1731],{"type":43,"value":491},{"type":37,"tag":439,"props":1733,"children":1734},{"style":473},[1735],{"type":43,"value":648},{"type":37,"tag":439,"props":1737,"children":1738},{"style":473},[1739],{"type":43,"value":476},{"type":37,"tag":439,"props":1741,"children":1742},{"style":452},[1743],{"type":43,"value":799},{"type":37,"tag":439,"props":1745,"children":1746},{"style":473},[1747],{"type":43,"value":996},{"type":37,"tag":439,"props":1749,"children":1751},{"class":441,"line":1750},38,[1752],{"type":37,"tag":439,"props":1753,"children":1754},{"style":473},[1755],{"type":43,"value":1005},{"type":37,"tag":439,"props":1757,"children":1759},{"class":441,"line":1758},39,[1760],{"type":37,"tag":439,"props":1761,"children":1762},{"style":473},[1763],{"type":43,"value":841},{"type":37,"tag":439,"props":1765,"children":1767},{"class":441,"line":1766},40,[1768,1772,1776,1780,1784,1788,1793,1797],{"type":37,"tag":439,"props":1769,"children":1770},{"style":473},[1771],{"type":43,"value":850},{"type":37,"tag":439,"props":1773,"children":1774},{"style":446},[1775],{"type":43,"value":855},{"type":37,"tag":439,"props":1777,"children":1778},{"style":473},[1779],{"type":43,"value":491},{"type":37,"tag":439,"props":1781,"children":1782},{"style":473},[1783],{"type":43,"value":648},{"type":37,"tag":439,"props":1785,"children":1786},{"style":473},[1787],{"type":43,"value":476},{"type":37,"tag":439,"props":1789,"children":1790},{"style":452},[1791],{"type":43,"value":1792},"web_search_call",{"type":37,"tag":439,"props":1794,"children":1795},{"style":473},[1796],{"type":43,"value":491},{"type":37,"tag":439,"props":1798,"children":1799},{"style":473},[1800],{"type":43,"value":666},{"type":37,"tag":439,"props":1802,"children":1804},{"class":441,"line":1803},41,[1805,1809,1813,1817,1821,1825,1830,1834],{"type":37,"tag":439,"props":1806,"children":1807},{"style":473},[1808],{"type":43,"value":850},{"type":37,"tag":439,"props":1810,"children":1811},{"style":446},[1812],{"type":43,"value":639},{"type":37,"tag":439,"props":1814,"children":1815},{"style":473},[1816],{"type":43,"value":491},{"type":37,"tag":439,"props":1818,"children":1819},{"style":473},[1820],{"type":43,"value":648},{"type":37,"tag":439,"props":1822,"children":1823},{"style":473},[1824],{"type":43,"value":476},{"type":37,"tag":439,"props":1826,"children":1827},{"style":452},[1828],{"type":43,"value":1829},"ws_1",{"type":37,"tag":439,"props":1831,"children":1832},{"style":473},[1833],{"type":43,"value":491},{"type":37,"tag":439,"props":1835,"children":1836},{"style":473},[1837],{"type":43,"value":666},{"type":37,"tag":439,"props":1839,"children":1841},{"class":441,"line":1840},42,[1842,1846,1850,1854,1858,1862,1866],{"type":37,"tag":439,"props":1843,"children":1844},{"style":473},[1845],{"type":43,"value":850},{"type":37,"tag":439,"props":1847,"children":1848},{"style":446},[1849],{"type":43,"value":782},{"type":37,"tag":439,"props":1851,"children":1852},{"style":473},[1853],{"type":43,"value":491},{"type":37,"tag":439,"props":1855,"children":1856},{"style":473},[1857],{"type":43,"value":648},{"type":37,"tag":439,"props":1859,"children":1860},{"style":473},[1861],{"type":43,"value":476},{"type":37,"tag":439,"props":1863,"children":1864},{"style":452},[1865],{"type":43,"value":799},{"type":37,"tag":439,"props":1867,"children":1868},{"style":473},[1869],{"type":43,"value":996},{"type":37,"tag":439,"props":1871,"children":1873},{"class":441,"line":1872},43,[1874],{"type":37,"tag":439,"props":1875,"children":1876},{"style":473},[1877],{"type":43,"value":1878},"    }\n",{"type":37,"tag":439,"props":1880,"children":1882},{"class":441,"line":1881},44,[1883],{"type":37,"tag":439,"props":1884,"children":1885},{"style":473},[1886],{"type":43,"value":1887},"  ],\n",{"type":37,"tag":439,"props":1889,"children":1891},{"class":441,"line":1890},45,[1892,1896,1901,1905,1909],{"type":37,"tag":439,"props":1893,"children":1894},{"style":473},[1895],{"type":43,"value":633},{"type":37,"tag":439,"props":1897,"children":1898},{"style":636},[1899],{"type":43,"value":1900},"usage",{"type":37,"tag":439,"props":1902,"children":1903},{"style":473},[1904],{"type":43,"value":491},{"type":37,"tag":439,"props":1906,"children":1907},{"style":473},[1908],{"type":43,"value":648},{"type":37,"tag":439,"props":1910,"children":1911},{"style":473},[1912],{"type":43,"value":1913}," {\n",{"type":37,"tag":439,"props":1915,"children":1917},{"class":441,"line":1916},46,[1918,1923,1928,1932,1936,1941],{"type":37,"tag":439,"props":1919,"children":1920},{"style":473},[1921],{"type":43,"value":1922},"    \"",{"type":37,"tag":439,"props":1924,"children":1925},{"style":446},[1926],{"type":43,"value":1927},"input_tokens",{"type":37,"tag":439,"props":1929,"children":1930},{"style":473},[1931],{"type":43,"value":491},{"type":37,"tag":439,"props":1933,"children":1934},{"style":473},[1935],{"type":43,"value":648},{"type":37,"tag":439,"props":1937,"children":1938},{"style":726},[1939],{"type":43,"value":1940}," 20",{"type":37,"tag":439,"props":1942,"children":1943},{"style":473},[1944],{"type":43,"value":666},{"type":37,"tag":439,"props":1946,"children":1948},{"class":441,"line":1947},47,[1949,1953,1958,1962,1966,1971,1975,1980,1984,1988,1993],{"type":37,"tag":439,"props":1950,"children":1951},{"style":473},[1952],{"type":43,"value":1922},{"type":37,"tag":439,"props":1954,"children":1955},{"style":446},[1956],{"type":43,"value":1957},"input_tokens_details",{"type":37,"tag":439,"props":1959,"children":1960},{"style":473},[1961],{"type":43,"value":491},{"type":37,"tag":439,"props":1963,"children":1964},{"style":473},[1965],{"type":43,"value":648},{"type":37,"tag":439,"props":1967,"children":1968},{"style":473},[1969],{"type":43,"value":1970}," {",{"type":37,"tag":439,"props":1972,"children":1973},{"style":473},[1974],{"type":43,"value":491},{"type":37,"tag":439,"props":1976,"children":1977},{"style":726},[1978],{"type":43,"value":1979},"cached_tokens",{"type":37,"tag":439,"props":1981,"children":1982},{"style":473},[1983],{"type":43,"value":491},{"type":37,"tag":439,"props":1985,"children":1986},{"style":473},[1987],{"type":43,"value":648},{"type":37,"tag":439,"props":1989,"children":1990},{"style":726},[1991],{"type":43,"value":1992}," 0",{"type":37,"tag":439,"props":1994,"children":1995},{"style":473},[1996],{"type":43,"value":1997},"},\n",{"type":37,"tag":439,"props":1999,"children":2001},{"class":441,"line":2000},48,[2002,2006,2011,2015,2019,2024],{"type":37,"tag":439,"props":2003,"children":2004},{"style":473},[2005],{"type":43,"value":1922},{"type":37,"tag":439,"props":2007,"children":2008},{"style":446},[2009],{"type":43,"value":2010},"output_tokens",{"type":37,"tag":439,"props":2012,"children":2013},{"style":473},[2014],{"type":43,"value":491},{"type":37,"tag":439,"props":2016,"children":2017},{"style":473},[2018],{"type":43,"value":648},{"type":37,"tag":439,"props":2020,"children":2021},{"style":726},[2022],{"type":43,"value":2023}," 80",{"type":37,"tag":439,"props":2025,"children":2026},{"style":473},[2027],{"type":43,"value":666},{"type":37,"tag":439,"props":2029,"children":2031},{"class":441,"line":2030},49,[2032,2036,2041,2045,2049,2053,2057,2062,2066,2070,2075],{"type":37,"tag":439,"props":2033,"children":2034},{"style":473},[2035],{"type":43,"value":1922},{"type":37,"tag":439,"props":2037,"children":2038},{"style":446},[2039],{"type":43,"value":2040},"output_tokens_details",{"type":37,"tag":439,"props":2042,"children":2043},{"style":473},[2044],{"type":43,"value":491},{"type":37,"tag":439,"props":2046,"children":2047},{"style":473},[2048],{"type":43,"value":648},{"type":37,"tag":439,"props":2050,"children":2051},{"style":473},[2052],{"type":43,"value":1970},{"type":37,"tag":439,"props":2054,"children":2055},{"style":473},[2056],{"type":43,"value":491},{"type":37,"tag":439,"props":2058,"children":2059},{"style":726},[2060],{"type":43,"value":2061},"reasoning_tokens",{"type":37,"tag":439,"props":2063,"children":2064},{"style":473},[2065],{"type":43,"value":491},{"type":37,"tag":439,"props":2067,"children":2068},{"style":473},[2069],{"type":43,"value":648},{"type":37,"tag":439,"props":2071,"children":2072},{"style":726},[2073],{"type":43,"value":2074}," 40",{"type":37,"tag":439,"props":2076,"children":2077},{"style":473},[2078],{"type":43,"value":1997},{"type":37,"tag":439,"props":2080,"children":2082},{"class":441,"line":2081},50,[2083,2087,2092,2096,2100],{"type":37,"tag":439,"props":2084,"children":2085},{"style":473},[2086],{"type":43,"value":1922},{"type":37,"tag":439,"props":2088,"children":2089},{"style":446},[2090],{"type":43,"value":2091},"total_tokens",{"type":37,"tag":439,"props":2093,"children":2094},{"style":473},[2095],{"type":43,"value":491},{"type":37,"tag":439,"props":2097,"children":2098},{"style":473},[2099],{"type":43,"value":648},{"type":37,"tag":439,"props":2101,"children":2102},{"style":726},[2103],{"type":43,"value":2104}," 100\n",{"type":37,"tag":439,"props":2106,"children":2108},{"class":441,"line":2107},51,[2109],{"type":37,"tag":439,"props":2110,"children":2111},{"style":473},[2112],{"type":43,"value":2113},"  }\n",{"type":37,"tag":439,"props":2115,"children":2117},{"class":441,"line":2116},52,[2118],{"type":37,"tag":439,"props":2119,"children":2120},{"style":473},[2121],{"type":43,"value":2122},"}\n",{"type":37,"tag":46,"props":2124,"children":2125},{},[2126,2128,2133,2135,2140,2142,2148,2149,2155,2156,2162,2164,2169,2170,2176,2178,2184],{"type":43,"value":2127},"Top-level ",{"type":37,"tag":50,"props":2129,"children":2131},{"className":2130},[],[2132],{"type":43,"value":782},{"type":43,"value":2134}," ∈ ",{"type":37,"tag":50,"props":2136,"children":2138},{"className":2137},[],[2139],{"type":43,"value":799},{"type":43,"value":2141}," | ",{"type":37,"tag":50,"props":2143,"children":2145},{"className":2144},[],[2146],{"type":43,"value":2147},"failed",{"type":43,"value":2141},{"type":37,"tag":50,"props":2150,"children":2152},{"className":2151},[],[2153],{"type":43,"value":2154},"in_progress",{"type":43,"value":2141},{"type":37,"tag":50,"props":2157,"children":2159},{"className":2158},[],[2160],{"type":43,"value":2161},"cancelled",{"type":43,"value":2163},". On ",{"type":37,"tag":50,"props":2165,"children":2167},{"className":2166},[],[2168],{"type":43,"value":2147},{"type":43,"value":279},{"type":37,"tag":50,"props":2171,"children":2173},{"className":2172},[],[2174],{"type":43,"value":2175},"error.code",{"type":43,"value":2177}," and ",{"type":37,"tag":50,"props":2179,"children":2181},{"className":2180},[],[2182],{"type":43,"value":2183},"error.message",{"type":43,"value":2185}," are populated.",{"type":37,"tag":97,"props":2187,"children":2189},{"id":2188},"output-block-types",[2190],{"type":43,"value":2191},"Output block types",{"type":37,"tag":170,"props":2193,"children":2194},{},[2195,2214],{"type":37,"tag":174,"props":2196,"children":2197},{},[2198],{"type":37,"tag":178,"props":2199,"children":2200},{},[2201,2209],{"type":37,"tag":182,"props":2202,"children":2203},{},[2204],{"type":37,"tag":50,"props":2205,"children":2207},{"className":2206},[],[2208],{"type":43,"value":855},{"type":37,"tag":182,"props":2210,"children":2211},{},[2212],{"type":43,"value":2213},"Purpose",{"type":37,"tag":193,"props":2215,"children":2216},{},[2217,2248,2287,2322],{"type":37,"tag":178,"props":2218,"children":2219},{},[2220,2228],{"type":37,"tag":200,"props":2221,"children":2222},{},[2223],{"type":37,"tag":50,"props":2224,"children":2226},{"className":2225},[],[2227],{"type":43,"value":872},{"type":37,"tag":200,"props":2229,"children":2230},{},[2231,2233,2239,2241,2246],{"type":43,"value":2232},"Thought process from reasoning models. ",{"type":37,"tag":50,"props":2234,"children":2236},{"className":2235},[],[2237],{"type":43,"value":2238},"summary[]",{"type":43,"value":2240}," holds human-readable text; ",{"type":37,"tag":50,"props":2242,"children":2244},{"className":2243},[],[2245],{"type":43,"value":974},{"type":43,"value":2247}," holds opaque signatures — round-trip verbatim for multi-turn tool calls.",{"type":37,"tag":178,"props":2249,"children":2250},{},[2251,2259],{"type":37,"tag":200,"props":2252,"children":2253},{},[2254],{"type":37,"tag":50,"props":2255,"children":2257},{"className":2256},[],[2258],{"type":43,"value":1041},{"type":37,"tag":200,"props":2260,"children":2261},{},[2262,2264,2270,2272,2278,2280,2285],{"type":43,"value":2263},"Main text output. ",{"type":37,"tag":50,"props":2265,"children":2267},{"className":2266},[],[2268],{"type":43,"value":2269},"content[].type === \"output_text\"",{"type":43,"value":2271},", plus ",{"type":37,"tag":50,"props":2273,"children":2275},{"className":2274},[],[2276],{"type":43,"value":2277},"annotations[]",{"type":43,"value":2279}," for ",{"type":37,"tag":50,"props":2281,"children":2283},{"className":2282},[],[2284],{"type":43,"value":1317},{"type":43,"value":2286}," entries from web search.",{"type":37,"tag":178,"props":2288,"children":2289},{},[2290,2298],{"type":37,"tag":200,"props":2291,"children":2292},{},[2293],{"type":37,"tag":50,"props":2294,"children":2296},{"className":2295},[],[2297],{"type":43,"value":1520},{"type":37,"tag":200,"props":2299,"children":2300},{},[2301,2303,2308,2310,2315,2316,2321],{"type":43,"value":2302},"Tool call: ",{"type":37,"tag":50,"props":2304,"children":2306},{"className":2305},[],[2307],{"type":43,"value":1616},{"type":43,"value":2309},", stringified-JSON ",{"type":37,"tag":50,"props":2311,"children":2313},{"className":2312},[],[2314],{"type":43,"value":1654},{"type":43,"value":279},{"type":37,"tag":50,"props":2317,"children":2319},{"className":2318},[],[2320],{"type":43,"value":1578},{"type":43,"value":251},{"type":37,"tag":178,"props":2323,"children":2324},{},[2325,2333],{"type":37,"tag":200,"props":2326,"children":2327},{},[2328],{"type":37,"tag":50,"props":2329,"children":2331},{"className":2330},[],[2332],{"type":43,"value":1792},{"type":37,"tag":200,"props":2334,"children":2335},{},[2336,2338,2343],{"type":43,"value":2337},"Sentinel showing the built-in web_search tool fired; use alongside ",{"type":37,"tag":50,"props":2339,"children":2341},{"className":2340},[],[2342],{"type":43,"value":1317},{"type":43,"value":2344}," annotations on messages.",{"type":37,"tag":46,"props":2346,"children":2347},{},[2348,2350,2355],{"type":43,"value":2349},"Match tool outputs back by ",{"type":37,"tag":50,"props":2351,"children":2353},{"className":2352},[],[2354],{"type":43,"value":1578},{"type":43,"value":2356}," when continuing the turn.",{"type":37,"tag":97,"props":2358,"children":2360},{"id":2359},"common-request-fields",[2361],{"type":43,"value":2362},"Common request fields",{"type":37,"tag":170,"props":2364,"children":2365},{},[2366,2382],{"type":37,"tag":174,"props":2367,"children":2368},{},[2369],{"type":37,"tag":178,"props":2370,"children":2371},{},[2372,2377],{"type":37,"tag":182,"props":2373,"children":2374},{},[2375],{"type":43,"value":2376},"Field",{"type":37,"tag":182,"props":2378,"children":2379},{},[2380],{"type":43,"value":2381},"Notes",{"type":37,"tag":193,"props":2383,"children":2384},{},[2385,2412,2444,2477,2521,2567,2612,2651,2668,2685,2731],{"type":37,"tag":178,"props":2386,"children":2387},{},[2388,2396],{"type":37,"tag":200,"props":2389,"children":2390},{},[2391],{"type":37,"tag":50,"props":2392,"children":2394},{"className":2393},[],[2395],{"type":43,"value":745},{"type":37,"tag":200,"props":2397,"children":2398},{},[2399,2401,2410],{"type":43,"value":2400},"Required. Model ID, trait, or compatibility mapping. Feature suffixes allowed (see ",{"type":37,"tag":145,"props":2402,"children":2404},{"href":2403},"..\u002Fvenice-chat\u002FSKILL.md#model-feature-suffixes",[2405],{"type":37,"tag":50,"props":2406,"children":2408},{"className":2407},[],[2409],{"type":43,"value":154},{"type":43,"value":2411},").",{"type":37,"tag":178,"props":2413,"children":2414},{},[2415,2423],{"type":37,"tag":200,"props":2416,"children":2417},{},[2418],{"type":37,"tag":50,"props":2419,"children":2421},{"className":2420},[],[2422],{"type":43,"value":580},{"type":37,"tag":200,"props":2424,"children":2425},{},[2426,2428,2434,2436,2442],{"type":43,"value":2427},"Required. String or input-items array. To set system\u002Fdeveloper context, include a leading message with ",{"type":37,"tag":50,"props":2429,"children":2431},{"className":2430},[],[2432],{"type":43,"value":2433},"role: \"system\"",{"type":43,"value":2435},"\u002F",{"type":37,"tag":50,"props":2437,"children":2439},{"className":2438},[],[2440],{"type":43,"value":2441},"\"developer\"",{"type":43,"value":2443}," in the input array.",{"type":37,"tag":178,"props":2445,"children":2446},{},[2447,2456],{"type":37,"tag":200,"props":2448,"children":2449},{},[2450],{"type":37,"tag":50,"props":2451,"children":2453},{"className":2452},[],[2454],{"type":43,"value":2455},"tools",{"type":37,"tag":200,"props":2457,"children":2458},{},[2459,2461,2467,2469,2475],{"type":43,"value":2460},"Array of ",{"type":37,"tag":50,"props":2462,"children":2464},{"className":2463},[],[2465],{"type":43,"value":2466},"{type:\"function\",function:{...}}",{"type":43,"value":2468}," or built-in ",{"type":37,"tag":50,"props":2470,"children":2472},{"className":2471},[],[2473],{"type":43,"value":2474},"{type:\"web_search\"}",{"type":43,"value":2476}," — availability depends on the model.",{"type":37,"tag":178,"props":2478,"children":2479},{},[2480,2489],{"type":37,"tag":200,"props":2481,"children":2482},{},[2483],{"type":37,"tag":50,"props":2484,"children":2486},{"className":2485},[],[2487],{"type":43,"value":2488},"tool_choice",{"type":37,"tag":200,"props":2490,"children":2491},{},[2492,2498,2500,2506,2507,2513,2514,2520],{"type":37,"tag":50,"props":2493,"children":2495},{"className":2494},[],[2496],{"type":43,"value":2497},"\"auto\"",{"type":43,"value":2499}," \u002F ",{"type":37,"tag":50,"props":2501,"children":2503},{"className":2502},[],[2504],{"type":43,"value":2505},"\"required\"",{"type":43,"value":2499},{"type":37,"tag":50,"props":2508,"children":2510},{"className":2509},[],[2511],{"type":43,"value":2512},"\"none\"",{"type":43,"value":2499},{"type":37,"tag":50,"props":2515,"children":2517},{"className":2516},[],[2518],{"type":43,"value":2519},"{type:\"function\",function:{\"name\":\"...\"}}",{"type":43,"value":251},{"type":37,"tag":178,"props":2522,"children":2523},{},[2524,2533],{"type":37,"tag":200,"props":2525,"children":2526},{},[2527],{"type":37,"tag":50,"props":2528,"children":2530},{"className":2529},[],[2531],{"type":43,"value":2532},"reasoning.effort",{"type":37,"tag":200,"props":2534,"children":2535},{},[2536,2538,2544,2545,2551,2552,2558,2560,2566],{"type":43,"value":2537},"Reasoning effort hint for thinking models (",{"type":37,"tag":50,"props":2539,"children":2541},{"className":2540},[],[2542],{"type":43,"value":2543},"\"low\"",{"type":43,"value":2141},{"type":37,"tag":50,"props":2546,"children":2548},{"className":2547},[],[2549],{"type":43,"value":2550},"\"medium\"",{"type":43,"value":2141},{"type":37,"tag":50,"props":2553,"children":2555},{"className":2554},[],[2556],{"type":43,"value":2557},"\"high\"",{"type":43,"value":2559},"). Mapped to ",{"type":37,"tag":50,"props":2561,"children":2563},{"className":2562},[],[2564],{"type":43,"value":2565},"reasoning_effort",{"type":43,"value":251},{"type":37,"tag":178,"props":2568,"children":2569},{},[2570,2593],{"type":37,"tag":200,"props":2571,"children":2572},{},[2573,2579,2580,2586,2587],{"type":37,"tag":50,"props":2574,"children":2576},{"className":2575},[],[2577],{"type":43,"value":2578},"temperature",{"type":43,"value":279},{"type":37,"tag":50,"props":2581,"children":2583},{"className":2582},[],[2584],{"type":43,"value":2585},"top_p",{"type":43,"value":279},{"type":37,"tag":50,"props":2588,"children":2590},{"className":2589},[],[2591],{"type":43,"value":2592},"max_output_tokens",{"type":37,"tag":200,"props":2594,"children":2595},{},[2596,2598,2603,2605,2611],{"type":43,"value":2597},"Standard generation controls. ",{"type":37,"tag":50,"props":2599,"children":2601},{"className":2600},[],[2602],{"type":43,"value":2592},{"type":43,"value":2604}," maps to ",{"type":37,"tag":50,"props":2606,"children":2608},{"className":2607},[],[2609],{"type":43,"value":2610},"max_tokens",{"type":43,"value":251},{"type":37,"tag":178,"props":2613,"children":2614},{},[2615,2624],{"type":37,"tag":200,"props":2616,"children":2617},{},[2618],{"type":37,"tag":50,"props":2619,"children":2621},{"className":2620},[],[2622],{"type":43,"value":2623},"web_search",{"type":37,"tag":200,"props":2625,"children":2626},{},[2627,2629,2635,2637,2642,2644,2650],{"type":43,"value":2628},"Boolean shortcut for enabling web search, equivalent to adding ",{"type":37,"tag":50,"props":2630,"children":2632},{"className":2631},[],[2633],{"type":43,"value":2634},"{\"type\":\"web_search\"}",{"type":43,"value":2636}," to ",{"type":37,"tag":50,"props":2638,"children":2640},{"className":2639},[],[2641],{"type":43,"value":2455},{"type":43,"value":2643}," or setting ",{"type":37,"tag":50,"props":2645,"children":2647},{"className":2646},[],[2648],{"type":43,"value":2649},"venice_parameters.enable_web_search",{"type":43,"value":251},{"type":37,"tag":178,"props":2652,"children":2653},{},[2654,2663],{"type":37,"tag":200,"props":2655,"children":2656},{},[2657],{"type":37,"tag":50,"props":2658,"children":2660},{"className":2659},[],[2661],{"type":43,"value":2662},"include",{"type":37,"tag":200,"props":2664,"children":2665},{},[2666],{"type":43,"value":2667},"Array of additional response fields to include (OpenAI compat).",{"type":37,"tag":178,"props":2669,"children":2670},{},[2671,2680],{"type":37,"tag":200,"props":2672,"children":2673},{},[2674],{"type":37,"tag":50,"props":2675,"children":2677},{"className":2676},[],[2678],{"type":43,"value":2679},"fallbacks",{"type":37,"tag":200,"props":2681,"children":2682},{},[2683],{"type":43,"value":2684},"Up to 10 entries. Anthropic beta parameter for Claude Fable 5 server-side refusal fallback; forwarded only on direct Anthropic routes.",{"type":37,"tag":178,"props":2686,"children":2687},{},[2688,2697],{"type":37,"tag":200,"props":2689,"children":2690},{},[2691],{"type":37,"tag":50,"props":2692,"children":2694},{"className":2693},[],[2695],{"type":43,"value":2696},"stream",{"type":37,"tag":200,"props":2698,"children":2699},{},[2700,2702,2708,2709,2715,2716,2722,2723,2729],{"type":43,"value":2701},"Boolean. SSE response with typed events (",{"type":37,"tag":50,"props":2703,"children":2705},{"className":2704},[],[2706],{"type":43,"value":2707},"response.created",{"type":43,"value":279},{"type":37,"tag":50,"props":2710,"children":2712},{"className":2711},[],[2713],{"type":43,"value":2714},"response.output_item.added",{"type":43,"value":279},{"type":37,"tag":50,"props":2717,"children":2719},{"className":2718},[],[2720],{"type":43,"value":2721},"response.output_text.delta",{"type":43,"value":279},{"type":37,"tag":50,"props":2724,"children":2726},{"className":2725},[],[2727],{"type":43,"value":2728},"response.completed",{"type":43,"value":2730},", …).",{"type":37,"tag":178,"props":2732,"children":2733},{},[2734,2742],{"type":37,"tag":200,"props":2735,"children":2736},{},[2737],{"type":37,"tag":50,"props":2738,"children":2740},{"className":2739},[],[2741],{"type":43,"value":268},{"type":37,"tag":200,"props":2743,"children":2744},{},[2745,2747,2753],{"type":43,"value":2746},"Subset listed above. Example: ",{"type":37,"tag":50,"props":2748,"children":2750},{"className":2749},[],[2751],{"type":43,"value":2752},"{\"character_slug\":\"alan-watts\",\"enable_web_search\":\"on\"}",{"type":43,"value":251},{"type":37,"tag":46,"props":2755,"children":2756},{},[2757,2762,2764,2770,2771,2777,2778,2784,2786,2792,2794,2799,2801,2806,2808,2813],{"type":37,"tag":59,"props":2758,"children":2759},{},[2760],{"type":43,"value":2761},"Silently dropped generation controls.",{"type":43,"value":2763}," ",{"type":37,"tag":50,"props":2765,"children":2767},{"className":2766},[],[2768],{"type":43,"value":2769},"n",{"type":43,"value":279},{"type":37,"tag":50,"props":2772,"children":2774},{"className":2773},[],[2775],{"type":43,"value":2776},"stop",{"type":43,"value":279},{"type":37,"tag":50,"props":2779,"children":2781},{"className":2780},[],[2782],{"type":43,"value":2783},"seed",{"type":43,"value":2785},", and\n",{"type":37,"tag":50,"props":2787,"children":2789},{"className":2788},[],[2790],{"type":43,"value":2791},"prompt_cache_key",{"type":43,"value":2793}," are not in the Alpha schema and are not translated to\n",{"type":37,"tag":50,"props":2795,"children":2797},{"className":2796},[],[2798],{"type":43,"value":168},{"type":43,"value":2800},". The request body is permissive, so sending them does not\nerror — they just never reach inference. If you need reproducible sampling\n(",{"type":37,"tag":50,"props":2802,"children":2804},{"className":2803},[],[2805],{"type":43,"value":2783},{"type":43,"value":2807},"), stop sequences, or explicit cache routing, stay on\n",{"type":37,"tag":50,"props":2809,"children":2811},{"className":2810},[],[2812],{"type":43,"value":168},{"type":43,"value":251},{"type":37,"tag":46,"props":2815,"children":2816},{},[2817,2819,2823,2825,2831,2832,2838,2839,2845,2846,2852,2853,2859,2860,2866,2867,2873,2875,2880,2882,2887],{"type":43,"value":2818},"Fields commonly found in OpenAI's Responses API that are ",{"type":37,"tag":59,"props":2820,"children":2821},{},[2822],{"type":43,"value":349},{"type":43,"value":2824}," in Venice's Alpha schema (and silently ignored or rejected by Zod): ",{"type":37,"tag":50,"props":2826,"children":2828},{"className":2827},[],[2829],{"type":43,"value":2830},"instructions",{"type":43,"value":279},{"type":37,"tag":50,"props":2833,"children":2835},{"className":2834},[],[2836],{"type":43,"value":2837},"metadata",{"type":43,"value":279},{"type":37,"tag":50,"props":2840,"children":2842},{"className":2841},[],[2843],{"type":43,"value":2844},"parallel_tool_calls",{"type":43,"value":279},{"type":37,"tag":50,"props":2847,"children":2849},{"className":2848},[],[2850],{"type":43,"value":2851},"response_format",{"type":43,"value":279},{"type":37,"tag":50,"props":2854,"children":2856},{"className":2855},[],[2857],{"type":43,"value":2858},"store",{"type":43,"value":279},{"type":37,"tag":50,"props":2861,"children":2863},{"className":2862},[],[2864],{"type":43,"value":2865},"previous_response_id",{"type":43,"value":279},{"type":37,"tag":50,"props":2868,"children":2870},{"className":2869},[],[2871],{"type":43,"value":2872},"background",{"type":43,"value":2874},". For ",{"type":37,"tag":50,"props":2876,"children":2878},{"className":2877},[],[2879],{"type":43,"value":2851},{"type":43,"value":2881}," \u002F JSON-schema structured output, use ",{"type":37,"tag":50,"props":2883,"children":2885},{"className":2884},[],[2886],{"type":43,"value":168},{"type":43,"value":251},{"type":37,"tag":97,"props":2889,"children":2891},{"id":2890},"streaming",[2892],{"type":43,"value":2893},"Streaming",{"type":37,"tag":46,"props":2895,"children":2896},{},[2897,2899,2905],{"type":43,"value":2898},"With ",{"type":37,"tag":50,"props":2900,"children":2902},{"className":2901},[],[2903],{"type":43,"value":2904},"stream: true",{"type":43,"value":2906},", the response is an SSE stream of typed events. Typical flow:",{"type":37,"tag":428,"props":2908,"children":2912},{"className":2909,"code":2911,"language":43},[2910],"language-text","event: response.created\nevent: response.output_item.added        # type=reasoning\nevent: response.reasoning.delta\nevent: response.output_item.added        # type=message\nevent: response.content_part.added\nevent: response.output_text.delta\nevent: response.output_text.delta\nevent: response.output_item.done\nevent: response.completed\n",[2913],{"type":37,"tag":50,"props":2914,"children":2915},{"__ignoreMap":433},[2916],{"type":43,"value":2911},{"type":37,"tag":46,"props":2918,"children":2919},{},[2920,2922,2927,2929,2934],{"type":43,"value":2921},"Consume events in order and reconstruct ",{"type":37,"tag":50,"props":2923,"children":2925},{"className":2924},[],[2926],{"type":43,"value":118},{"type":43,"value":2928}," client-side; the shape on ",{"type":37,"tag":50,"props":2930,"children":2932},{"className":2931},[],[2933],{"type":43,"value":2728},{"type":43,"value":2935}," matches the non-streamed response exactly.",{"type":37,"tag":97,"props":2937,"children":2939},{"id":2938},"authentication-error-responses",[2940],{"type":43,"value":2941},"Authentication & error responses",{"type":37,"tag":104,"props":2943,"children":2944},{},[2945,2961,2978,3031,3042],{"type":37,"tag":108,"props":2946,"children":2947},{},[2948,2953,2955,2960],{"type":37,"tag":50,"props":2949,"children":2951},{"className":2950},[],[2952],{"type":43,"value":234},{"type":43,"value":2954}," — bad request; also returned when an E2EE-capable model is used without ",{"type":37,"tag":50,"props":2956,"children":2958},{"className":2957},[],[2959],{"type":43,"value":242},{"type":43,"value":251},{"type":37,"tag":108,"props":2962,"children":2963},{},[2964,2969,2971,2976],{"type":37,"tag":50,"props":2965,"children":2967},{"className":2966},[],[2968],{"type":43,"value":380},{"type":43,"value":2970}," — auth failed, or Bearer key lacks ",{"type":37,"tag":50,"props":2972,"children":2974},{"className":2973},[],[2975],{"type":43,"value":93},{"type":43,"value":2977},", or the model is Pro-only and you're on an INFERENCE key \u002F x402 wallet.",{"type":37,"tag":108,"props":2979,"children":2980},{},[2981,2987,2989,2995,2997,3003,3005,3011,3012,3018,3020,3030],{"type":37,"tag":50,"props":2982,"children":2984},{"className":2983},[],[2985],{"type":43,"value":2986},"402",{"type":43,"value":2988}," — insufficient balance. Bearer → ",{"type":37,"tag":50,"props":2990,"children":2992},{"className":2991},[],[2993],{"type":43,"value":2994},"{ error: \"INSUFFICIENT_BALANCE\" }",{"type":43,"value":2996},". x402 → ",{"type":37,"tag":50,"props":2998,"children":3000},{"className":2999},[],[3001],{"type":43,"value":3002},"PAYMENT_REQUIRED",{"type":43,"value":3004}," with ",{"type":37,"tag":50,"props":3006,"children":3008},{"className":3007},[],[3009],{"type":43,"value":3010},"topUpInstructions",{"type":43,"value":2177},{"type":37,"tag":50,"props":3013,"children":3015},{"className":3014},[],[3016],{"type":43,"value":3017},"siwxChallenge",{"type":43,"value":3019}," (see ",{"type":37,"tag":145,"props":3021,"children":3023},{"href":3022},"..\u002Fvenice-x402\u002FSKILL.md",[3024],{"type":37,"tag":50,"props":3025,"children":3027},{"className":3026},[],[3028],{"type":43,"value":3029},"venice-x402",{"type":43,"value":2411},{"type":37,"tag":108,"props":3032,"children":3033},{},[3034,3040],{"type":37,"tag":50,"props":3035,"children":3037},{"className":3036},[],[3038],{"type":43,"value":3039},"429",{"type":43,"value":3041}," — rate-limited.",{"type":37,"tag":108,"props":3043,"children":3044},{},[3045,3051],{"type":37,"tag":50,"props":3046,"children":3048},{"className":3047},[],[3049],{"type":43,"value":3050},"500",{"type":43,"value":3052}," — inference failed.",{"type":37,"tag":46,"props":3054,"children":3055},{},[3056,3062,3064,3070],{"type":37,"tag":50,"props":3057,"children":3059},{"className":3058},[],[3060],{"type":43,"value":3061},"X-Balance-Remaining",{"type":43,"value":3063}," is on 200 responses when using x402 auth; ",{"type":37,"tag":50,"props":3065,"children":3067},{"className":3066},[],[3068],{"type":43,"value":3069},"PAYMENT-REQUIRED",{"type":43,"value":3071}," header on 402.",{"type":37,"tag":97,"props":3073,"children":3075},{"id":3074},"migration-notes",[3076],{"type":43,"value":3077},"Migration notes",{"type":37,"tag":104,"props":3079,"children":3080},{},[3081,3108,3140,3177,3213,3232],{"type":37,"tag":108,"props":3082,"children":3083},{},[3084,3086,3092,3094,3099,3101,3107],{"type":43,"value":3085},"Port ",{"type":37,"tag":50,"props":3087,"children":3089},{"className":3088},[],[3090],{"type":43,"value":3091},"messages",{"type":43,"value":3093}," → pass as ",{"type":37,"tag":50,"props":3095,"children":3097},{"className":3096},[],[3098],{"type":43,"value":580},{"type":43,"value":3100}," (string, or typed array with leading ",{"type":37,"tag":50,"props":3102,"children":3104},{"className":3103},[],[3105],{"type":43,"value":3106},"{role:\"system\"|\"developer\", content:\"...\"}",{"type":43,"value":2411},{"type":37,"tag":108,"props":3109,"children":3110},{},[3111,3117,3119,3124,3126,3131,3133,3139],{"type":37,"tag":50,"props":3112,"children":3114},{"className":3113},[],[3115],{"type":43,"value":3116},"venice_parameters.character_slug",{"type":43,"value":3118}," → ",{"type":37,"tag":59,"props":3120,"children":3121},{},[3122],{"type":43,"value":3123},"supported",{"type":43,"value":3125},"; pass inside ",{"type":37,"tag":50,"props":3127,"children":3129},{"className":3128},[],[3130],{"type":43,"value":268},{"type":43,"value":3132}," or as a model feature suffix (",{"type":37,"tag":50,"props":3134,"children":3136},{"className":3135},[],[3137],{"type":43,"value":3138},":character_slug=alan-watts",{"type":43,"value":2411},{"type":37,"tag":108,"props":3141,"children":3142},{},[3143,3148,3150,3155,3157,3163,3165,3170,3171,3176],{"type":37,"tag":50,"props":3144,"children":3146},{"className":3145},[],[3147],{"type":43,"value":2649},{"type":43,"value":3149}," → pass inside ",{"type":37,"tag":50,"props":3151,"children":3153},{"className":3152},[],[3154],{"type":43,"value":268},{"type":43,"value":3156},", or append ",{"type":37,"tag":50,"props":3158,"children":3160},{"className":3159},[],[3161],{"type":43,"value":3162},":enable_web_search=on",{"type":43,"value":3164}," to the model ID, or add ",{"type":37,"tag":50,"props":3166,"children":3168},{"className":3167},[],[3169],{"type":43,"value":2634},{"type":43,"value":2636},{"type":37,"tag":50,"props":3172,"children":3174},{"className":3173},[],[3175],{"type":43,"value":2455},{"type":43,"value":251},{"type":37,"tag":108,"props":3178,"children":3179},{},[3180,3186,3187,3192,3193,3204,3206,3211],{"type":37,"tag":50,"props":3181,"children":3183},{"className":3182},[],[3184],{"type":43,"value":3185},"venice_parameters.strip_thinking_response",{"type":43,"value":2499},{"type":37,"tag":50,"props":3188,"children":3190},{"className":3189},[],[3191],{"type":43,"value":335},{"type":43,"value":3118},{"type":37,"tag":59,"props":3194,"children":3195},{},[3196,3198],{"type":43,"value":3197},"not supported on ",{"type":37,"tag":50,"props":3199,"children":3201},{"className":3200},[],[3202],{"type":43,"value":3203},"\u002Fresponses",{"type":43,"value":3205}," in Alpha; stay on ",{"type":37,"tag":50,"props":3207,"children":3209},{"className":3208},[],[3210],{"type":43,"value":168},{"type":43,"value":3212}," for these.",{"type":37,"tag":108,"props":3214,"children":3215},{},[3216,3218,3223,3225,3230],{"type":43,"value":3217},"Full E2EE flow (E2EE request headers + encrypted response) → stay on ",{"type":37,"tag":50,"props":3219,"children":3221},{"className":3220},[],[3222],{"type":43,"value":168},{"type":43,"value":3224},". For TEE-only inference on an E2EE-capable model, pass ",{"type":37,"tag":50,"props":3226,"children":3228},{"className":3227},[],[3229],{"type":43,"value":242},{"type":43,"value":3231}," here.",{"type":37,"tag":108,"props":3233,"children":3234},{},[3235,3240,3242,3247],{"type":37,"tag":50,"props":3236,"children":3238},{"className":3237},[],[3239],{"type":43,"value":2851},{"type":43,"value":3241}," \u002F JSON-schema structured output → stay on ",{"type":37,"tag":50,"props":3243,"children":3245},{"className":3244},[],[3246],{"type":43,"value":168},{"type":43,"value":251},{"type":37,"tag":3249,"props":3250,"children":3251},"style",{},[3252],{"type":43,"value":3253},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3255,"total":1189},[3256,3268,3279,3292,3306,3321,3338,3350,3366,3380,3392,3406],{"slug":3257,"name":3257,"fn":3258,"description":3259,"org":3260,"tags":3261,"stars":20,"repoUrl":21,"updatedAt":3267},"venice-api-keys","manage Venice API keys and rate limits","Manage Venice API keys. Covers GET\u002FPOST\u002FPATCH\u002FDELETE \u002Fapi_keys, GET \u002Fapi_keys\u002F{id}, GET \u002Fapi_keys\u002Frate_limits, GET \u002Fapi_keys\u002Frate_limits\u002Flog, the two-step \u002Fapi_keys\u002Fgenerate_web3_key wallet flow, INFERENCE vs ADMIN key types, and per-key consumption limits (USD \u002F DIEM).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3262,3263,3264],{"name":18,"slug":19,"type":16},{"name":388,"slug":385,"type":16},{"name":3265,"slug":3266,"type":16},"Security","security","2026-07-17T06:05:40.24171",{"slug":3269,"name":3269,"fn":3270,"description":3271,"org":3272,"tags":3273,"stars":20,"repoUrl":21,"updatedAt":3278},"venice-api-overview","integrate with Venice AI API","High-level map of the Venice.ai API - base URL, authentication modes, endpoint categories, response headers, pricing model, error shape, and versioning. Load this first when starting any Venice integration.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3274,3275],{"name":18,"slug":19,"type":16},{"name":3276,"slug":3277,"type":16},"Documentation","documentation","2026-08-01T05:43:18.703041",{"slug":3280,"name":3280,"fn":3281,"description":3282,"org":3283,"tags":3284,"stars":20,"repoUrl":21,"updatedAt":3291},"venice-audio-music","generate music and audio tracks","Async music \u002F audio-track generation via Venice. Covers the \u002Faudio\u002Fquote + \u002Faudio\u002Fqueue + \u002Faudio\u002Fretrieve + \u002Faudio\u002Fcomplete lifecycle, lyrics vs instrumental, voice selection, duration, language, speed, model capability probing, and webhook-free polling.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3285,3288],{"name":3286,"slug":3287,"type":16},"Audio","audio",{"name":3289,"slug":3290,"type":16},"Creative","creative","2026-07-17T06:04:02.174106",{"slug":3293,"name":3293,"fn":3294,"description":3295,"org":3296,"tags":3297,"stars":20,"repoUrl":21,"updatedAt":3305},"venice-audio-speech","generate speech from text","Generate speech from text via POST \u002Faudio\u002Fspeech, and clone a voice via POST \u002Faudio\u002Fvoices. Covers TTS models (Kokoro, Qwen 3, xAI, Inworld, Chatterbox, Orpheus, ElevenLabs Turbo, MiniMax, Gemini Flash, Gradium), voices per family, cloned-voice handles, output formats (mp3\u002Fopus\u002Faac\u002Fflac\u002Fwav\u002Fpcm), streaming, prompt\u002Femotion styling, temperature\u002Ftop_p, and language hints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3298,3299,3302],{"name":3286,"slug":3287,"type":16},{"name":3300,"slug":3301,"type":16},"Speech","speech",{"name":3303,"slug":3304,"type":16},"Text-to-Speech","text-to-speech","2026-08-01T05:43:12.713524",{"slug":3307,"name":3307,"fn":3308,"description":3309,"org":3310,"tags":3311,"stars":20,"repoUrl":21,"updatedAt":3320},"venice-audio-transcription","transcribe audio files to text","Transcribe audio files to text via POST \u002Faudio\u002Ftranscriptions. Covers supported models (Parakeet, Whisper, Wizper, Scribe, xAI STT), supported formats (wav\u002Fflac\u002Fm4a\u002Faac\u002Fmp4\u002Fmp3\u002Fogg\u002Fwebm), response formats (json\u002Ftext), timestamps, and language hints. OpenAI-compatible multipart.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3312,3313,3316,3317],{"name":3286,"slug":3287,"type":16},{"name":3314,"slug":3315,"type":16},"Data Extraction","data-extraction",{"name":3300,"slug":3301,"type":16},{"name":3318,"slug":3319,"type":16},"Transcription","transcription","2026-07-17T06:04:05.524355",{"slug":3322,"name":3322,"fn":3323,"description":3324,"org":3325,"tags":3326,"stars":20,"repoUrl":21,"updatedAt":3337},"venice-augment","extract and parse text from documents","Venice augmentation endpoints for agent pipelines. Covers POST \u002Faugment\u002Ftext-parser (extract text from PDF\u002FDOCX\u002FXLSX\u002Fplain text, multipart, up to 25MB, JSON or plain text response), POST \u002Faugment\u002Fscrape (fetch a URL and return markdown; blocks X\u002FReddit), and POST \u002Faugment\u002Fsearch (Brave ZDR or anonymized Google; structured title\u002Furl\u002Fcontent\u002Fdate results, up to 20 per query). Privacy (zero data retention), rate limits, and error shapes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3327,3328,3331,3334],{"name":3314,"slug":3315,"type":16},{"name":3329,"slug":3330,"type":16},"DOCX","docx",{"name":3332,"slug":3333,"type":16},"PDF","pdf",{"name":3335,"slug":3336,"type":16},"Spreadsheets","spreadsheets","2026-07-17T06:04:00.77979",{"slug":419,"name":419,"fn":3339,"description":3340,"org":3341,"tags":3342,"stars":20,"repoUrl":21,"updatedAt":3349},"authenticate to Venice API","Authenticate to the Venice API with a Bearer API key or with an x402 \u002F SIWX wallet (EVM on Base or Ed25519 on Solana). Covers the SIGN-IN-WITH-X header format, the SIWE and Solana message fields, TTL and nonce rules, the venice-x402-client SDK, and how to choose between the two modes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3343,3344,3347],{"name":18,"slug":19,"type":16},{"name":3345,"slug":3346,"type":16},"Auth","auth",{"name":3348,"slug":3348,"type":16},"x402","2026-08-01T05:43:14.726965",{"slug":3351,"name":3351,"fn":3352,"description":3353,"org":3354,"tags":3355,"stars":20,"repoUrl":21,"updatedAt":3365},"venice-billing","manage Venice billing and usage analytics","Venice billing and usage analytics - GET \u002Fbilling\u002Fbalance, GET \u002Fbilling\u002Fusage-history (keyset-paginated per-request ledger, JSON or CSV), GET \u002Fbilling\u002Fusage (deprecated predecessor), and GET \u002Fbilling\u002Fusage-analytics (aggregated by date\u002Fmodel\u002Fkey). Covers the DIEM\u002FUSD\u002FBUNDLED_CREDITS consumption priority and building dashboards. (Beta)",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3356,3359,3362],{"name":3357,"slug":3358,"type":16},"Analytics","analytics",{"name":3360,"slug":3361,"type":16},"Finance","finance",{"name":3363,"slug":3364,"type":16},"Reporting","reporting","2026-08-01T05:43:13.766419",{"slug":3367,"name":3367,"fn":3368,"description":3369,"org":3370,"tags":3371,"stars":20,"repoUrl":21,"updatedAt":3379},"venice-characters","discover and use Venice AI characters","Discover and use Venice public characters (persona-driven system prompts with a bound model). Covers GET \u002Fcharacters (search\u002Ffilter\u002Fsort), \u002Fcharacters\u002F{slug}, \u002Fcharacters\u002F{slug}\u002Freviews, the Character schema, and how to apply a character via venice_parameters.character_slug in chat completions.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3372,3375,3376],{"name":3373,"slug":3374,"type":16},"Agents","agents",{"name":14,"slug":15,"type":16},{"name":3377,"slug":3378,"type":16},"Persona","persona","2026-07-17T06:05:40.942733",{"slug":154,"name":154,"fn":3381,"description":3382,"org":3383,"tags":3384,"stars":20,"repoUrl":21,"updatedAt":3391},"interact with Venice chat completions API","Call POST \u002Fchat\u002Fcompletions on Venice. Covers the OpenAI-compatible request shape, Venice-only venice_parameters (web search, E2EE, characters, thinking control, X search), multimodal inputs (images\u002Faudio\u002Fvideo), tool calls, reasoning controls, streaming, prompt caching, structured output, and model feature suffixes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3385,3386,3387,3388],{"name":3373,"slug":3374,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":3389,"slug":3390,"type":16},"Multimodal","multimodal","2026-08-01T05:43:15.821764",{"slug":3393,"name":3393,"fn":3394,"description":3395,"org":3396,"tags":3397,"stars":20,"repoUrl":21,"updatedAt":3405},"venice-crypto-rpc","proxy crypto JSON-RPC calls via Venice","Use Venice as a pay-per-call JSON-RPC proxy to 27 EVM, Starknet, and Solana networks. Covers GET \u002Fcrypto\u002Frpc\u002Fnetworks, POST \u002Fcrypto\u002Frpc\u002F{network}, chain families and per-family method allowlists, the 1×\u002F2×\u002F4× method-tier pricing model, per-minute + 24-hour credit rate limits, idempotency keys for safe retries, single vs batch requests, and the unsupported stateful\u002FWebSocket methods (eth_subscribe, eth_newFilter, *Subscribe, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3398,3399,3402],{"name":18,"slug":19,"type":16},{"name":3400,"slug":3401,"type":16},"Ethereum","ethereum",{"name":3403,"slug":3404,"type":16},"Web3","web3","2026-08-01T05:43:22.78028",{"slug":3407,"name":3407,"fn":3408,"description":3409,"org":3410,"tags":3411,"stars":20,"repoUrl":21,"updatedAt":3416},"venice-embeddings","generate embeddings with Venice API","Call POST \u002Fembeddings on Venice. Covers request shape (input, model, encoding_format, dimensions, user), OpenAI compatibility, response compression (gzip\u002Fbr), and practical usage for retrieval, clustering, and RAG.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3412,3415],{"name":3413,"slug":3414,"type":16},"Data Analysis","data-analysis",{"name":14,"slug":15,"type":16},"2026-07-17T06:07:34.97752",{"items":3418,"total":1189},[3419,3425,3430,3435,3441,3448,3455],{"slug":3257,"name":3257,"fn":3258,"description":3259,"org":3420,"tags":3421,"stars":20,"repoUrl":21,"updatedAt":3267},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3422,3423,3424],{"name":18,"slug":19,"type":16},{"name":388,"slug":385,"type":16},{"name":3265,"slug":3266,"type":16},{"slug":3269,"name":3269,"fn":3270,"description":3271,"org":3426,"tags":3427,"stars":20,"repoUrl":21,"updatedAt":3278},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3428,3429],{"name":18,"slug":19,"type":16},{"name":3276,"slug":3277,"type":16},{"slug":3280,"name":3280,"fn":3281,"description":3282,"org":3431,"tags":3432,"stars":20,"repoUrl":21,"updatedAt":3291},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3433,3434],{"name":3286,"slug":3287,"type":16},{"name":3289,"slug":3290,"type":16},{"slug":3293,"name":3293,"fn":3294,"description":3295,"org":3436,"tags":3437,"stars":20,"repoUrl":21,"updatedAt":3305},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3438,3439,3440],{"name":3286,"slug":3287,"type":16},{"name":3300,"slug":3301,"type":16},{"name":3303,"slug":3304,"type":16},{"slug":3307,"name":3307,"fn":3308,"description":3309,"org":3442,"tags":3443,"stars":20,"repoUrl":21,"updatedAt":3320},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3444,3445,3446,3447],{"name":3286,"slug":3287,"type":16},{"name":3314,"slug":3315,"type":16},{"name":3300,"slug":3301,"type":16},{"name":3318,"slug":3319,"type":16},{"slug":3322,"name":3322,"fn":3323,"description":3324,"org":3449,"tags":3450,"stars":20,"repoUrl":21,"updatedAt":3337},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3451,3452,3453,3454],{"name":3314,"slug":3315,"type":16},{"name":3329,"slug":3330,"type":16},{"name":3332,"slug":3333,"type":16},{"name":3335,"slug":3336,"type":16},{"slug":419,"name":419,"fn":3339,"description":3340,"org":3456,"tags":3457,"stars":20,"repoUrl":21,"updatedAt":3349},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3458,3459,3460],{"name":18,"slug":19,"type":16},{"name":3345,"slug":3346,"type":16},{"name":3348,"slug":3348,"type":16}]