[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-venice-ai-venice-characters":3,"mdc-6ue8lu-key":34,"related-org-venice-ai-venice-characters":3036,"related-repo-venice-ai-venice-characters":3196},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"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},"venice-ai","Venice AI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvenice-ai.png","veniceai",[13,17,20],{"name":14,"slug":15,"type":16},"LLM","llm","tag",{"name":18,"slug":19,"type":16},"Persona","persona",{"name":21,"slug":22,"type":16},"Agents","agents",119,"https:\u002F\u002Fgithub.com\u002Fveniceai\u002Fskills","2026-07-17T06:05:40.942733",null,15,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"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-characters","---\nname: venice-characters\ndescription: 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.\n---\n\n# Venice Characters\n\nCharacters are **published personas** on Venice — each one bundles a system prompt, a backing model, optional web access, and metadata (tags, ratings, adult flag). You apply a character to any chat by passing its `slug` via `venice_parameters.character_slug`.\n\n## Use when\n\n- You want to build a character-selection UI or discovery surface.\n- You want to ship an app with a preset persona (e.g. a coding coach, a philosopher, a game NPC).\n- You need to adapt a character's underlying model (`modelId`) to match your capability requirements.\n\nThree endpoints, all under `Preview` (API may change):\n\n| Endpoint | Purpose |\n|---|---|\n| `GET \u002Fcharacters` | Browse\u002Fsearch\u002Ffilter the catalog. |\n| `GET \u002Fcharacters\u002F{slug}` | Fetch one character. |\n| `GET \u002Fcharacters\u002F{slug}\u002Freviews` | Paginated public reviews. |\n\nAll three endpoints require authentication (Bearer API key or x402 SIWE) — see [`venice-auth`](..\u002Fvenice-auth\u002FSKILL.md). There is no unauthenticated public endpoint.\n\n## `GET \u002Fcharacters`\n\n```bash\ncurl \"https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fcharacters?search=philosopher&sortBy=highestRating&limit=20\" \\\n  -H \"Authorization: Bearer $VENICE_API_KEY\"\n```\n\n### Query parameters\n\n| Param | Type | Notes |\n|---|---|---|\n| `search` | string, ≤ 200 | Name, description, or tag match. Hashtag (`#Philosophy`) supported. |\n| `categories` | string[], ≤ 20 | Repeat or comma-separate. Character categories (`roleplay`, `philosophy`, …). |\n| `tags` | string[], ≤ 20 | Repeat or comma-separate. |\n| `modelId` | string[], ≤ 20 | Filter by backing model (`zai-org-glm-5-1`, `kimi-k2-6`, `minimax-m25`, …). |\n| `isAdult` | `\"true\"` \u002F `\"false\"` | Adult-content flag. |\n| `isPro` | `\"true\"` \u002F `\"false\"` | Require a Pro model. |\n| `isWebEnabled` | `\"true\"` \u002F `\"false\"` | Allow web access. |\n| `sortBy` | enum | `featured`, `highestRating`, `highlyRated`, `highlyRatedAndRecent`, `imports`, `mostRecent`, `ratingCount`. |\n| `sortOrder` | `asc` \u002F `desc` | Default `desc`. |\n| `limit` | 1–100 | Default 50. |\n| `offset` | integer | Pagination offset. |\n\n### Character object\n\n| Field | Notes |\n|---|---|\n| `id` | UUID. |\n| `slug` | **Use this as `character_slug` in chat**. URL-safe. |\n| `name`, `description`, `photoUrl`, `shareUrl` | Presentation. |\n| `author` | Anonymized short ID. |\n| `tags[]`, `featured`, `adult`, `webEnabled` | Metadata. |\n| `modelId` | Backing Venice model ID (e.g. `venice-uncensored`). |\n| `stats` | `{averageRating, imports, ratingCount, ratingSum, userRating}`. |\n| `createdAt`, `updatedAt` | ISO-8601. |\n\n## `GET \u002Fcharacters\u002F{slug}`\n\n```bash\ncurl \"https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fcharacters\u002Falan-watts\" \\\n  -H \"Authorization: Bearer $VENICE_API_KEY\"\n```\n\nReturns the same object shape above, wrapped as `{ object: \"character\", data: { ... } }`. `404` if the slug is unknown or unpublished.\n\n## `GET \u002Fcharacters\u002F{slug}\u002Freviews`\n\n```bash\ncurl \"https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fcharacters\u002Falan-watts\u002Freviews?page=1&pageSize=20\" \\\n  -H \"Authorization: Bearer $VENICE_API_KEY\"\n```\n\nResponse:\n\n```json\n{\n  \"object\": \"list\",\n  \"pagination\": {\"page\": 1, \"pageSize\": 20, \"total\": 87, \"totalPages\": 5},\n  \"summary\": {\"averageRating\": 4.7, \"totalReviews\": 87},\n  \"data\": [\n    {\n      \"id\": \"...\", \"characterId\": \"...\", \"createdAt\": \"...\",\n      \"rating\": 5, \"message\": \"Thoughtful and grounded.\",\n      \"locale\": \"en\", \"username\": \"product_user_42\", \"isOwner\": false,\n      \"userAvatarUrl\": \"https:\u002F\u002Fcdn.venice.ai\u002F...\"\n    }\n  ]\n}\n```\n\nAlso sets `x-pagination-*` response headers (`limit`, `page`, `total`, `total-pages`).\n\n## Using a character in chat\n\n### Minimal\n\n```json\n{\n  \"model\": \"zai-org-glm-5-1\",\n  \"venice_parameters\": { \"character_slug\": \"alan-watts\" },\n  \"messages\": [\n    { \"role\": \"user\", \"content\": \"What's the nature of mind?\" }\n  ]\n}\n```\n\nThe character's system prompt is injected by Venice. `include_venice_system_prompt` defaults to `true` and adds Venice's curated prelude — set it to `false` for a pure character voice.\n\n### Ignoring the character's backing model\n\nYou can override the model — Venice will still apply the character's system prompt:\n\n```json\n{\n  \"model\": \"kimi-k2-6\",\n  \"venice_parameters\": {\n    \"character_slug\": \"alan-watts\",\n    \"include_venice_system_prompt\": false\n  },\n  \"messages\": [...]\n}\n```\n\nUseful when the character's `modelId` lacks a capability (e.g. function calling, vision) that your app needs.\n\n### Via feature suffix on the `model` string\n\n```json\n{ \"model\": \"zai-org-glm-5-1:character_slug=alan-watts\", \"messages\": [...] }\n```\n\nUseful when the client library (OpenAI SDK, LangChain, etc.) can't add `venice_parameters`. See [`venice-chat`](..\u002Fvenice-chat\u002FSKILL.md#model-feature-suffixes) for the full suffix grammar.\n\n## Patterns\n\n### Character picker UI\n\n```ts\nconst res = await fetch(`${base}\u002Fcharacters?sortBy=featured&limit=50`, {\n  headers: { Authorization: `Bearer ${process.env.VENICE_API_KEY}` },\n})\nconst { data } = await res.json()\n\u002F\u002F show data[].photoUrl, data[].name, data[].stats.averageRating\n\u002F\u002F pick a slug, then pass into chat:\nawait chat({\n  model: pickedModelId,\n  venice_parameters: { character_slug: pickedSlug },\n  messages: [...]\n})\n```\n\n### Filter for family-friendly + web\n\n```bash\n\u002Fcharacters?isAdult=false&isWebEnabled=true&sortBy=highlyRatedAndRecent\n```\n\n### Search by hashtag\n\n```bash\n\u002Fcharacters?search=%23Philosophy\n```\n\n## Errors\n\n| Code | Meaning |\n|---|---|\n| `400` | Bad query params (e.g. `limit > 100`). |\n| `401` | Missing or invalid auth. All three endpoints require a Bearer key or SIWE header. |\n| `404` | Unknown slug. |\n| `500` | Transient. Retry. |\n\n## Gotchas\n\n- This is **Preview API** — response shape may change.\n- Slugs are the **public ID** on the character's page (`venice.ai\u002Fc\u002F\u003Cslug>`). They are **not** the internal `id` UUID.\n- `photoUrl` \u002F `shareUrl` \u002F `userAvatarUrl` can be `null` — don't assume they exist.\n- Character `modelId` may be gated (Pro, beta). If you always reuse the character's `modelId`, handle `401 \"only available to Pro users\"` gracefully.\n- Adult-flagged characters are omitted unless `isAdult=true` is explicitly passed.\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,47,78,85,113,126,205,223,232,306,313,731,737,966,975,1029,1050,1059,1113,1118,1741,1779,1785,1791,2014,2043,2049,2054,2235,2247,2260,2341,2365,2371,2377,2714,2720,2777,2783,2803,2809,2905,2911,3030],{"type":40,"tag":41,"props":42,"children":43},"element","h1",{"id":4},[44],{"type":45,"value":46},"text","Venice Characters",{"type":40,"tag":48,"props":49,"children":50},"p",{},[51,53,59,61,68,70,76],{"type":45,"value":52},"Characters are ",{"type":40,"tag":54,"props":55,"children":56},"strong",{},[57],{"type":45,"value":58},"published personas",{"type":45,"value":60}," on Venice — each one bundles a system prompt, a backing model, optional web access, and metadata (tags, ratings, adult flag). You apply a character to any chat by passing its ",{"type":40,"tag":62,"props":63,"children":65},"code",{"className":64},[],[66],{"type":45,"value":67},"slug",{"type":45,"value":69}," via ",{"type":40,"tag":62,"props":71,"children":73},{"className":72},[],[74],{"type":45,"value":75},"venice_parameters.character_slug",{"type":45,"value":77},".",{"type":40,"tag":79,"props":80,"children":82},"h2",{"id":81},"use-when",[83],{"type":45,"value":84},"Use when",{"type":40,"tag":86,"props":87,"children":88},"ul",{},[89,95,100],{"type":40,"tag":90,"props":91,"children":92},"li",{},[93],{"type":45,"value":94},"You want to build a character-selection UI or discovery surface.",{"type":40,"tag":90,"props":96,"children":97},{},[98],{"type":45,"value":99},"You want to ship an app with a preset persona (e.g. a coding coach, a philosopher, a game NPC).",{"type":40,"tag":90,"props":101,"children":102},{},[103,105,111],{"type":45,"value":104},"You need to adapt a character's underlying model (",{"type":40,"tag":62,"props":106,"children":108},{"className":107},[],[109],{"type":45,"value":110},"modelId",{"type":45,"value":112},") to match your capability requirements.",{"type":40,"tag":48,"props":114,"children":115},{},[116,118,124],{"type":45,"value":117},"Three endpoints, all under ",{"type":40,"tag":62,"props":119,"children":121},{"className":120},[],[122],{"type":45,"value":123},"Preview",{"type":45,"value":125}," (API may change):",{"type":40,"tag":127,"props":128,"children":129},"table",{},[130,149],{"type":40,"tag":131,"props":132,"children":133},"thead",{},[134],{"type":40,"tag":135,"props":136,"children":137},"tr",{},[138,144],{"type":40,"tag":139,"props":140,"children":141},"th",{},[142],{"type":45,"value":143},"Endpoint",{"type":40,"tag":139,"props":145,"children":146},{},[147],{"type":45,"value":148},"Purpose",{"type":40,"tag":150,"props":151,"children":152},"tbody",{},[153,171,188],{"type":40,"tag":135,"props":154,"children":155},{},[156,166],{"type":40,"tag":157,"props":158,"children":159},"td",{},[160],{"type":40,"tag":62,"props":161,"children":163},{"className":162},[],[164],{"type":45,"value":165},"GET \u002Fcharacters",{"type":40,"tag":157,"props":167,"children":168},{},[169],{"type":45,"value":170},"Browse\u002Fsearch\u002Ffilter the catalog.",{"type":40,"tag":135,"props":172,"children":173},{},[174,183],{"type":40,"tag":157,"props":175,"children":176},{},[177],{"type":40,"tag":62,"props":178,"children":180},{"className":179},[],[181],{"type":45,"value":182},"GET \u002Fcharacters\u002F{slug}",{"type":40,"tag":157,"props":184,"children":185},{},[186],{"type":45,"value":187},"Fetch one character.",{"type":40,"tag":135,"props":189,"children":190},{},[191,200],{"type":40,"tag":157,"props":192,"children":193},{},[194],{"type":40,"tag":62,"props":195,"children":197},{"className":196},[],[198],{"type":45,"value":199},"GET \u002Fcharacters\u002F{slug}\u002Freviews",{"type":40,"tag":157,"props":201,"children":202},{},[203],{"type":45,"value":204},"Paginated public reviews.",{"type":40,"tag":48,"props":206,"children":207},{},[208,210,221],{"type":45,"value":209},"All three endpoints require authentication (Bearer API key or x402 SIWE) — see ",{"type":40,"tag":211,"props":212,"children":214},"a",{"href":213},"..\u002Fvenice-auth\u002FSKILL.md",[215],{"type":40,"tag":62,"props":216,"children":218},{"className":217},[],[219],{"type":45,"value":220},"venice-auth",{"type":45,"value":222},". There is no unauthenticated public endpoint.",{"type":40,"tag":79,"props":224,"children":226},{"id":225},"get-characters",[227],{"type":40,"tag":62,"props":228,"children":230},{"className":229},[],[231],{"type":45,"value":165},{"type":40,"tag":233,"props":234,"children":239},"pre",{"className":235,"code":236,"language":237,"meta":238,"style":238},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl \"https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fcharacters?search=philosopher&sortBy=highestRating&limit=20\" \\\n  -H \"Authorization: Bearer $VENICE_API_KEY\"\n","bash","",[240],{"type":40,"tag":62,"props":241,"children":242},{"__ignoreMap":238},[243,278],{"type":40,"tag":244,"props":245,"children":248},"span",{"class":246,"line":247},"line",1,[249,255,261,267,272],{"type":40,"tag":244,"props":250,"children":252},{"style":251},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[253],{"type":45,"value":254},"curl",{"type":40,"tag":244,"props":256,"children":258},{"style":257},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[259],{"type":45,"value":260}," \"",{"type":40,"tag":244,"props":262,"children":264},{"style":263},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[265],{"type":45,"value":266},"https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fcharacters?search=philosopher&sortBy=highestRating&limit=20",{"type":40,"tag":244,"props":268,"children":269},{"style":257},[270],{"type":45,"value":271},"\"",{"type":40,"tag":244,"props":273,"children":275},{"style":274},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[276],{"type":45,"value":277}," \\\n",{"type":40,"tag":244,"props":279,"children":281},{"class":246,"line":280},2,[282,287,291,296,301],{"type":40,"tag":244,"props":283,"children":284},{"style":263},[285],{"type":45,"value":286},"  -H",{"type":40,"tag":244,"props":288,"children":289},{"style":257},[290],{"type":45,"value":260},{"type":40,"tag":244,"props":292,"children":293},{"style":263},[294],{"type":45,"value":295},"Authorization: Bearer ",{"type":40,"tag":244,"props":297,"children":298},{"style":274},[299],{"type":45,"value":300},"$VENICE_API_KEY",{"type":40,"tag":244,"props":302,"children":303},{"style":257},[304],{"type":45,"value":305},"\"\n",{"type":40,"tag":307,"props":308,"children":310},"h3",{"id":309},"query-parameters",[311],{"type":45,"value":312},"Query parameters",{"type":40,"tag":127,"props":314,"children":315},{},[316,337],{"type":40,"tag":131,"props":317,"children":318},{},[319],{"type":40,"tag":135,"props":320,"children":321},{},[322,327,332],{"type":40,"tag":139,"props":323,"children":324},{},[325],{"type":45,"value":326},"Param",{"type":40,"tag":139,"props":328,"children":329},{},[330],{"type":45,"value":331},"Type",{"type":40,"tag":139,"props":333,"children":334},{},[335],{"type":45,"value":336},"Notes",{"type":40,"tag":150,"props":338,"children":339},{},[340,370,413,438,483,517,548,579,648,687,709],{"type":40,"tag":135,"props":341,"children":342},{},[343,352,357],{"type":40,"tag":157,"props":344,"children":345},{},[346],{"type":40,"tag":62,"props":347,"children":349},{"className":348},[],[350],{"type":45,"value":351},"search",{"type":40,"tag":157,"props":353,"children":354},{},[355],{"type":45,"value":356},"string, ≤ 200",{"type":40,"tag":157,"props":358,"children":359},{},[360,362,368],{"type":45,"value":361},"Name, description, or tag match. Hashtag (",{"type":40,"tag":62,"props":363,"children":365},{"className":364},[],[366],{"type":45,"value":367},"#Philosophy",{"type":45,"value":369},") supported.",{"type":40,"tag":135,"props":371,"children":372},{},[373,382,392],{"type":40,"tag":157,"props":374,"children":375},{},[376],{"type":40,"tag":62,"props":377,"children":379},{"className":378},[],[380],{"type":45,"value":381},"categories",{"type":40,"tag":157,"props":383,"children":384},{},[385,387,390],{"type":45,"value":386},"string",{"type":40,"tag":244,"props":388,"children":389},{},[],{"type":45,"value":391},", ≤ 20",{"type":40,"tag":157,"props":393,"children":394},{},[395,397,403,405,411],{"type":45,"value":396},"Repeat or comma-separate. Character categories (",{"type":40,"tag":62,"props":398,"children":400},{"className":399},[],[401],{"type":45,"value":402},"roleplay",{"type":45,"value":404},", ",{"type":40,"tag":62,"props":406,"children":408},{"className":407},[],[409],{"type":45,"value":410},"philosophy",{"type":45,"value":412},", …).",{"type":40,"tag":135,"props":414,"children":415},{},[416,425,433],{"type":40,"tag":157,"props":417,"children":418},{},[419],{"type":40,"tag":62,"props":420,"children":422},{"className":421},[],[423],{"type":45,"value":424},"tags",{"type":40,"tag":157,"props":426,"children":427},{},[428,429,432],{"type":45,"value":386},{"type":40,"tag":244,"props":430,"children":431},{},[],{"type":45,"value":391},{"type":40,"tag":157,"props":434,"children":435},{},[436],{"type":45,"value":437},"Repeat or comma-separate.",{"type":40,"tag":135,"props":439,"children":440},{},[441,449,457],{"type":40,"tag":157,"props":442,"children":443},{},[444],{"type":40,"tag":62,"props":445,"children":447},{"className":446},[],[448],{"type":45,"value":110},{"type":40,"tag":157,"props":450,"children":451},{},[452,453,456],{"type":45,"value":386},{"type":40,"tag":244,"props":454,"children":455},{},[],{"type":45,"value":391},{"type":40,"tag":157,"props":458,"children":459},{},[460,462,468,469,475,476,482],{"type":45,"value":461},"Filter by backing model (",{"type":40,"tag":62,"props":463,"children":465},{"className":464},[],[466],{"type":45,"value":467},"zai-org-glm-5-1",{"type":45,"value":404},{"type":40,"tag":62,"props":470,"children":472},{"className":471},[],[473],{"type":45,"value":474},"kimi-k2-6",{"type":45,"value":404},{"type":40,"tag":62,"props":477,"children":479},{"className":478},[],[480],{"type":45,"value":481},"minimax-m25",{"type":45,"value":412},{"type":40,"tag":135,"props":484,"children":485},{},[486,495,512],{"type":40,"tag":157,"props":487,"children":488},{},[489],{"type":40,"tag":62,"props":490,"children":492},{"className":491},[],[493],{"type":45,"value":494},"isAdult",{"type":40,"tag":157,"props":496,"children":497},{},[498,504,506],{"type":40,"tag":62,"props":499,"children":501},{"className":500},[],[502],{"type":45,"value":503},"\"true\"",{"type":45,"value":505}," \u002F ",{"type":40,"tag":62,"props":507,"children":509},{"className":508},[],[510],{"type":45,"value":511},"\"false\"",{"type":40,"tag":157,"props":513,"children":514},{},[515],{"type":45,"value":516},"Adult-content flag.",{"type":40,"tag":135,"props":518,"children":519},{},[520,529,543],{"type":40,"tag":157,"props":521,"children":522},{},[523],{"type":40,"tag":62,"props":524,"children":526},{"className":525},[],[527],{"type":45,"value":528},"isPro",{"type":40,"tag":157,"props":530,"children":531},{},[532,537,538],{"type":40,"tag":62,"props":533,"children":535},{"className":534},[],[536],{"type":45,"value":503},{"type":45,"value":505},{"type":40,"tag":62,"props":539,"children":541},{"className":540},[],[542],{"type":45,"value":511},{"type":40,"tag":157,"props":544,"children":545},{},[546],{"type":45,"value":547},"Require a Pro model.",{"type":40,"tag":135,"props":549,"children":550},{},[551,560,574],{"type":40,"tag":157,"props":552,"children":553},{},[554],{"type":40,"tag":62,"props":555,"children":557},{"className":556},[],[558],{"type":45,"value":559},"isWebEnabled",{"type":40,"tag":157,"props":561,"children":562},{},[563,568,569],{"type":40,"tag":62,"props":564,"children":566},{"className":565},[],[567],{"type":45,"value":503},{"type":45,"value":505},{"type":40,"tag":62,"props":570,"children":572},{"className":571},[],[573],{"type":45,"value":511},{"type":40,"tag":157,"props":575,"children":576},{},[577],{"type":45,"value":578},"Allow web access.",{"type":40,"tag":135,"props":580,"children":581},{},[582,591,596],{"type":40,"tag":157,"props":583,"children":584},{},[585],{"type":40,"tag":62,"props":586,"children":588},{"className":587},[],[589],{"type":45,"value":590},"sortBy",{"type":40,"tag":157,"props":592,"children":593},{},[594],{"type":45,"value":595},"enum",{"type":40,"tag":157,"props":597,"children":598},{},[599,605,606,612,613,619,620,626,627,633,634,640,641,647],{"type":40,"tag":62,"props":600,"children":602},{"className":601},[],[603],{"type":45,"value":604},"featured",{"type":45,"value":404},{"type":40,"tag":62,"props":607,"children":609},{"className":608},[],[610],{"type":45,"value":611},"highestRating",{"type":45,"value":404},{"type":40,"tag":62,"props":614,"children":616},{"className":615},[],[617],{"type":45,"value":618},"highlyRated",{"type":45,"value":404},{"type":40,"tag":62,"props":621,"children":623},{"className":622},[],[624],{"type":45,"value":625},"highlyRatedAndRecent",{"type":45,"value":404},{"type":40,"tag":62,"props":628,"children":630},{"className":629},[],[631],{"type":45,"value":632},"imports",{"type":45,"value":404},{"type":40,"tag":62,"props":635,"children":637},{"className":636},[],[638],{"type":45,"value":639},"mostRecent",{"type":45,"value":404},{"type":40,"tag":62,"props":642,"children":644},{"className":643},[],[645],{"type":45,"value":646},"ratingCount",{"type":45,"value":77},{"type":40,"tag":135,"props":649,"children":650},{},[651,660,676],{"type":40,"tag":157,"props":652,"children":653},{},[654],{"type":40,"tag":62,"props":655,"children":657},{"className":656},[],[658],{"type":45,"value":659},"sortOrder",{"type":40,"tag":157,"props":661,"children":662},{},[663,669,670],{"type":40,"tag":62,"props":664,"children":666},{"className":665},[],[667],{"type":45,"value":668},"asc",{"type":45,"value":505},{"type":40,"tag":62,"props":671,"children":673},{"className":672},[],[674],{"type":45,"value":675},"desc",{"type":40,"tag":157,"props":677,"children":678},{},[679,681,686],{"type":45,"value":680},"Default ",{"type":40,"tag":62,"props":682,"children":684},{"className":683},[],[685],{"type":45,"value":675},{"type":45,"value":77},{"type":40,"tag":135,"props":688,"children":689},{},[690,699,704],{"type":40,"tag":157,"props":691,"children":692},{},[693],{"type":40,"tag":62,"props":694,"children":696},{"className":695},[],[697],{"type":45,"value":698},"limit",{"type":40,"tag":157,"props":700,"children":701},{},[702],{"type":45,"value":703},"1–100",{"type":40,"tag":157,"props":705,"children":706},{},[707],{"type":45,"value":708},"Default 50.",{"type":40,"tag":135,"props":710,"children":711},{},[712,721,726],{"type":40,"tag":157,"props":713,"children":714},{},[715],{"type":40,"tag":62,"props":716,"children":718},{"className":717},[],[719],{"type":45,"value":720},"offset",{"type":40,"tag":157,"props":722,"children":723},{},[724],{"type":45,"value":725},"integer",{"type":40,"tag":157,"props":727,"children":728},{},[729],{"type":45,"value":730},"Pagination offset.",{"type":40,"tag":307,"props":732,"children":734},{"id":733},"character-object",[735],{"type":45,"value":736},"Character object",{"type":40,"tag":127,"props":738,"children":739},{},[740,755],{"type":40,"tag":131,"props":741,"children":742},{},[743],{"type":40,"tag":135,"props":744,"children":745},{},[746,751],{"type":40,"tag":139,"props":747,"children":748},{},[749],{"type":45,"value":750},"Field",{"type":40,"tag":139,"props":752,"children":753},{},[754],{"type":45,"value":336},{"type":40,"tag":150,"props":756,"children":757},{},[758,775,804,842,859,896,920,942],{"type":40,"tag":135,"props":759,"children":760},{},[761,770],{"type":40,"tag":157,"props":762,"children":763},{},[764],{"type":40,"tag":62,"props":765,"children":767},{"className":766},[],[768],{"type":45,"value":769},"id",{"type":40,"tag":157,"props":771,"children":772},{},[773],{"type":45,"value":774},"UUID.",{"type":40,"tag":135,"props":776,"children":777},{},[778,786],{"type":40,"tag":157,"props":779,"children":780},{},[781],{"type":40,"tag":62,"props":782,"children":784},{"className":783},[],[785],{"type":45,"value":67},{"type":40,"tag":157,"props":787,"children":788},{},[789,802],{"type":40,"tag":54,"props":790,"children":791},{},[792,794,800],{"type":45,"value":793},"Use this as ",{"type":40,"tag":62,"props":795,"children":797},{"className":796},[],[798],{"type":45,"value":799},"character_slug",{"type":45,"value":801}," in chat",{"type":45,"value":803},". URL-safe.",{"type":40,"tag":135,"props":805,"children":806},{},[807,837],{"type":40,"tag":157,"props":808,"children":809},{},[810,816,817,823,824,830,831],{"type":40,"tag":62,"props":811,"children":813},{"className":812},[],[814],{"type":45,"value":815},"name",{"type":45,"value":404},{"type":40,"tag":62,"props":818,"children":820},{"className":819},[],[821],{"type":45,"value":822},"description",{"type":45,"value":404},{"type":40,"tag":62,"props":825,"children":827},{"className":826},[],[828],{"type":45,"value":829},"photoUrl",{"type":45,"value":404},{"type":40,"tag":62,"props":832,"children":834},{"className":833},[],[835],{"type":45,"value":836},"shareUrl",{"type":40,"tag":157,"props":838,"children":839},{},[840],{"type":45,"value":841},"Presentation.",{"type":40,"tag":135,"props":843,"children":844},{},[845,854],{"type":40,"tag":157,"props":846,"children":847},{},[848],{"type":40,"tag":62,"props":849,"children":851},{"className":850},[],[852],{"type":45,"value":853},"author",{"type":40,"tag":157,"props":855,"children":856},{},[857],{"type":45,"value":858},"Anonymized short ID.",{"type":40,"tag":135,"props":860,"children":861},{},[862,891],{"type":40,"tag":157,"props":863,"children":864},{},[865,871,872,877,878,884,885],{"type":40,"tag":62,"props":866,"children":868},{"className":867},[],[869],{"type":45,"value":870},"tags[]",{"type":45,"value":404},{"type":40,"tag":62,"props":873,"children":875},{"className":874},[],[876],{"type":45,"value":604},{"type":45,"value":404},{"type":40,"tag":62,"props":879,"children":881},{"className":880},[],[882],{"type":45,"value":883},"adult",{"type":45,"value":404},{"type":40,"tag":62,"props":886,"children":888},{"className":887},[],[889],{"type":45,"value":890},"webEnabled",{"type":40,"tag":157,"props":892,"children":893},{},[894],{"type":45,"value":895},"Metadata.",{"type":40,"tag":135,"props":897,"children":898},{},[899,907],{"type":40,"tag":157,"props":900,"children":901},{},[902],{"type":40,"tag":62,"props":903,"children":905},{"className":904},[],[906],{"type":45,"value":110},{"type":40,"tag":157,"props":908,"children":909},{},[910,912,918],{"type":45,"value":911},"Backing Venice model ID (e.g. ",{"type":40,"tag":62,"props":913,"children":915},{"className":914},[],[916],{"type":45,"value":917},"venice-uncensored",{"type":45,"value":919},").",{"type":40,"tag":135,"props":921,"children":922},{},[923,932],{"type":40,"tag":157,"props":924,"children":925},{},[926],{"type":40,"tag":62,"props":927,"children":929},{"className":928},[],[930],{"type":45,"value":931},"stats",{"type":40,"tag":157,"props":933,"children":934},{},[935,941],{"type":40,"tag":62,"props":936,"children":938},{"className":937},[],[939],{"type":45,"value":940},"{averageRating, imports, ratingCount, ratingSum, userRating}",{"type":45,"value":77},{"type":40,"tag":135,"props":943,"children":944},{},[945,961],{"type":40,"tag":157,"props":946,"children":947},{},[948,954,955],{"type":40,"tag":62,"props":949,"children":951},{"className":950},[],[952],{"type":45,"value":953},"createdAt",{"type":45,"value":404},{"type":40,"tag":62,"props":956,"children":958},{"className":957},[],[959],{"type":45,"value":960},"updatedAt",{"type":40,"tag":157,"props":962,"children":963},{},[964],{"type":45,"value":965},"ISO-8601.",{"type":40,"tag":79,"props":967,"children":969},{"id":968},"get-charactersslug",[970],{"type":40,"tag":62,"props":971,"children":973},{"className":972},[],[974],{"type":45,"value":182},{"type":40,"tag":233,"props":976,"children":978},{"className":235,"code":977,"language":237,"meta":238,"style":238},"curl \"https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fcharacters\u002Falan-watts\" \\\n  -H \"Authorization: Bearer $VENICE_API_KEY\"\n",[979],{"type":40,"tag":62,"props":980,"children":981},{"__ignoreMap":238},[982,1006],{"type":40,"tag":244,"props":983,"children":984},{"class":246,"line":247},[985,989,993,998,1002],{"type":40,"tag":244,"props":986,"children":987},{"style":251},[988],{"type":45,"value":254},{"type":40,"tag":244,"props":990,"children":991},{"style":257},[992],{"type":45,"value":260},{"type":40,"tag":244,"props":994,"children":995},{"style":263},[996],{"type":45,"value":997},"https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fcharacters\u002Falan-watts",{"type":40,"tag":244,"props":999,"children":1000},{"style":257},[1001],{"type":45,"value":271},{"type":40,"tag":244,"props":1003,"children":1004},{"style":274},[1005],{"type":45,"value":277},{"type":40,"tag":244,"props":1007,"children":1008},{"class":246,"line":280},[1009,1013,1017,1021,1025],{"type":40,"tag":244,"props":1010,"children":1011},{"style":263},[1012],{"type":45,"value":286},{"type":40,"tag":244,"props":1014,"children":1015},{"style":257},[1016],{"type":45,"value":260},{"type":40,"tag":244,"props":1018,"children":1019},{"style":263},[1020],{"type":45,"value":295},{"type":40,"tag":244,"props":1022,"children":1023},{"style":274},[1024],{"type":45,"value":300},{"type":40,"tag":244,"props":1026,"children":1027},{"style":257},[1028],{"type":45,"value":305},{"type":40,"tag":48,"props":1030,"children":1031},{},[1032,1034,1040,1042,1048],{"type":45,"value":1033},"Returns the same object shape above, wrapped as ",{"type":40,"tag":62,"props":1035,"children":1037},{"className":1036},[],[1038],{"type":45,"value":1039},"{ object: \"character\", data: { ... } }",{"type":45,"value":1041},". ",{"type":40,"tag":62,"props":1043,"children":1045},{"className":1044},[],[1046],{"type":45,"value":1047},"404",{"type":45,"value":1049}," if the slug is unknown or unpublished.",{"type":40,"tag":79,"props":1051,"children":1053},{"id":1052},"get-charactersslugreviews",[1054],{"type":40,"tag":62,"props":1055,"children":1057},{"className":1056},[],[1058],{"type":45,"value":199},{"type":40,"tag":233,"props":1060,"children":1062},{"className":235,"code":1061,"language":237,"meta":238,"style":238},"curl \"https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fcharacters\u002Falan-watts\u002Freviews?page=1&pageSize=20\" \\\n  -H \"Authorization: Bearer $VENICE_API_KEY\"\n",[1063],{"type":40,"tag":62,"props":1064,"children":1065},{"__ignoreMap":238},[1066,1090],{"type":40,"tag":244,"props":1067,"children":1068},{"class":246,"line":247},[1069,1073,1077,1082,1086],{"type":40,"tag":244,"props":1070,"children":1071},{"style":251},[1072],{"type":45,"value":254},{"type":40,"tag":244,"props":1074,"children":1075},{"style":257},[1076],{"type":45,"value":260},{"type":40,"tag":244,"props":1078,"children":1079},{"style":263},[1080],{"type":45,"value":1081},"https:\u002F\u002Fapi.venice.ai\u002Fapi\u002Fv1\u002Fcharacters\u002Falan-watts\u002Freviews?page=1&pageSize=20",{"type":40,"tag":244,"props":1083,"children":1084},{"style":257},[1085],{"type":45,"value":271},{"type":40,"tag":244,"props":1087,"children":1088},{"style":274},[1089],{"type":45,"value":277},{"type":40,"tag":244,"props":1091,"children":1092},{"class":246,"line":280},[1093,1097,1101,1105,1109],{"type":40,"tag":244,"props":1094,"children":1095},{"style":263},[1096],{"type":45,"value":286},{"type":40,"tag":244,"props":1098,"children":1099},{"style":257},[1100],{"type":45,"value":260},{"type":40,"tag":244,"props":1102,"children":1103},{"style":263},[1104],{"type":45,"value":295},{"type":40,"tag":244,"props":1106,"children":1107},{"style":274},[1108],{"type":45,"value":300},{"type":40,"tag":244,"props":1110,"children":1111},{"style":257},[1112],{"type":45,"value":305},{"type":40,"tag":48,"props":1114,"children":1115},{},[1116],{"type":45,"value":1117},"Response:",{"type":40,"tag":233,"props":1119,"children":1123},{"className":1120,"code":1121,"language":1122,"meta":238,"style":238},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"object\": \"list\",\n  \"pagination\": {\"page\": 1, \"pageSize\": 20, \"total\": 87, \"totalPages\": 5},\n  \"summary\": {\"averageRating\": 4.7, \"totalReviews\": 87},\n  \"data\": [\n    {\n      \"id\": \"...\", \"characterId\": \"...\", \"createdAt\": \"...\",\n      \"rating\": 5, \"message\": \"Thoughtful and grounded.\",\n      \"locale\": \"en\", \"username\": \"product_user_42\", \"isOwner\": false,\n      \"userAvatarUrl\": \"https:\u002F\u002Fcdn.venice.ai\u002F...\"\n    }\n  ]\n}\n","json",[1124],{"type":40,"tag":62,"props":1125,"children":1126},{"__ignoreMap":238},[1127,1135,1176,1309,1385,1411,1420,1523,1586,1680,1714,1723,1732],{"type":40,"tag":244,"props":1128,"children":1129},{"class":246,"line":247},[1130],{"type":40,"tag":244,"props":1131,"children":1132},{"style":257},[1133],{"type":45,"value":1134},"{\n",{"type":40,"tag":244,"props":1136,"children":1137},{"class":246,"line":280},[1138,1143,1149,1153,1158,1162,1167,1171],{"type":40,"tag":244,"props":1139,"children":1140},{"style":257},[1141],{"type":45,"value":1142},"  \"",{"type":40,"tag":244,"props":1144,"children":1146},{"style":1145},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1147],{"type":45,"value":1148},"object",{"type":40,"tag":244,"props":1150,"children":1151},{"style":257},[1152],{"type":45,"value":271},{"type":40,"tag":244,"props":1154,"children":1155},{"style":257},[1156],{"type":45,"value":1157},":",{"type":40,"tag":244,"props":1159,"children":1160},{"style":257},[1161],{"type":45,"value":260},{"type":40,"tag":244,"props":1163,"children":1164},{"style":263},[1165],{"type":45,"value":1166},"list",{"type":40,"tag":244,"props":1168,"children":1169},{"style":257},[1170],{"type":45,"value":271},{"type":40,"tag":244,"props":1172,"children":1173},{"style":257},[1174],{"type":45,"value":1175},",\n",{"type":40,"tag":244,"props":1177,"children":1179},{"class":246,"line":1178},3,[1180,1184,1189,1193,1197,1202,1206,1211,1215,1219,1225,1230,1234,1239,1243,1247,1252,1256,1260,1265,1269,1273,1278,1282,1286,1291,1295,1299,1304],{"type":40,"tag":244,"props":1181,"children":1182},{"style":257},[1183],{"type":45,"value":1142},{"type":40,"tag":244,"props":1185,"children":1186},{"style":1145},[1187],{"type":45,"value":1188},"pagination",{"type":40,"tag":244,"props":1190,"children":1191},{"style":257},[1192],{"type":45,"value":271},{"type":40,"tag":244,"props":1194,"children":1195},{"style":257},[1196],{"type":45,"value":1157},{"type":40,"tag":244,"props":1198,"children":1199},{"style":257},[1200],{"type":45,"value":1201}," {",{"type":40,"tag":244,"props":1203,"children":1204},{"style":257},[1205],{"type":45,"value":271},{"type":40,"tag":244,"props":1207,"children":1208},{"style":251},[1209],{"type":45,"value":1210},"page",{"type":40,"tag":244,"props":1212,"children":1213},{"style":257},[1214],{"type":45,"value":271},{"type":40,"tag":244,"props":1216,"children":1217},{"style":257},[1218],{"type":45,"value":1157},{"type":40,"tag":244,"props":1220,"children":1222},{"style":1221},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1223],{"type":45,"value":1224}," 1",{"type":40,"tag":244,"props":1226,"children":1227},{"style":257},[1228],{"type":45,"value":1229},",",{"type":40,"tag":244,"props":1231,"children":1232},{"style":257},[1233],{"type":45,"value":260},{"type":40,"tag":244,"props":1235,"children":1236},{"style":251},[1237],{"type":45,"value":1238},"pageSize",{"type":40,"tag":244,"props":1240,"children":1241},{"style":257},[1242],{"type":45,"value":271},{"type":40,"tag":244,"props":1244,"children":1245},{"style":257},[1246],{"type":45,"value":1157},{"type":40,"tag":244,"props":1248,"children":1249},{"style":1221},[1250],{"type":45,"value":1251}," 20",{"type":40,"tag":244,"props":1253,"children":1254},{"style":257},[1255],{"type":45,"value":1229},{"type":40,"tag":244,"props":1257,"children":1258},{"style":257},[1259],{"type":45,"value":260},{"type":40,"tag":244,"props":1261,"children":1262},{"style":251},[1263],{"type":45,"value":1264},"total",{"type":40,"tag":244,"props":1266,"children":1267},{"style":257},[1268],{"type":45,"value":271},{"type":40,"tag":244,"props":1270,"children":1271},{"style":257},[1272],{"type":45,"value":1157},{"type":40,"tag":244,"props":1274,"children":1275},{"style":1221},[1276],{"type":45,"value":1277}," 87",{"type":40,"tag":244,"props":1279,"children":1280},{"style":257},[1281],{"type":45,"value":1229},{"type":40,"tag":244,"props":1283,"children":1284},{"style":257},[1285],{"type":45,"value":260},{"type":40,"tag":244,"props":1287,"children":1288},{"style":251},[1289],{"type":45,"value":1290},"totalPages",{"type":40,"tag":244,"props":1292,"children":1293},{"style":257},[1294],{"type":45,"value":271},{"type":40,"tag":244,"props":1296,"children":1297},{"style":257},[1298],{"type":45,"value":1157},{"type":40,"tag":244,"props":1300,"children":1301},{"style":1221},[1302],{"type":45,"value":1303}," 5",{"type":40,"tag":244,"props":1305,"children":1306},{"style":257},[1307],{"type":45,"value":1308},"},\n",{"type":40,"tag":244,"props":1310,"children":1312},{"class":246,"line":1311},4,[1313,1317,1322,1326,1330,1334,1338,1343,1347,1351,1356,1360,1364,1369,1373,1377,1381],{"type":40,"tag":244,"props":1314,"children":1315},{"style":257},[1316],{"type":45,"value":1142},{"type":40,"tag":244,"props":1318,"children":1319},{"style":1145},[1320],{"type":45,"value":1321},"summary",{"type":40,"tag":244,"props":1323,"children":1324},{"style":257},[1325],{"type":45,"value":271},{"type":40,"tag":244,"props":1327,"children":1328},{"style":257},[1329],{"type":45,"value":1157},{"type":40,"tag":244,"props":1331,"children":1332},{"style":257},[1333],{"type":45,"value":1201},{"type":40,"tag":244,"props":1335,"children":1336},{"style":257},[1337],{"type":45,"value":271},{"type":40,"tag":244,"props":1339,"children":1340},{"style":251},[1341],{"type":45,"value":1342},"averageRating",{"type":40,"tag":244,"props":1344,"children":1345},{"style":257},[1346],{"type":45,"value":271},{"type":40,"tag":244,"props":1348,"children":1349},{"style":257},[1350],{"type":45,"value":1157},{"type":40,"tag":244,"props":1352,"children":1353},{"style":1221},[1354],{"type":45,"value":1355}," 4.7",{"type":40,"tag":244,"props":1357,"children":1358},{"style":257},[1359],{"type":45,"value":1229},{"type":40,"tag":244,"props":1361,"children":1362},{"style":257},[1363],{"type":45,"value":260},{"type":40,"tag":244,"props":1365,"children":1366},{"style":251},[1367],{"type":45,"value":1368},"totalReviews",{"type":40,"tag":244,"props":1370,"children":1371},{"style":257},[1372],{"type":45,"value":271},{"type":40,"tag":244,"props":1374,"children":1375},{"style":257},[1376],{"type":45,"value":1157},{"type":40,"tag":244,"props":1378,"children":1379},{"style":1221},[1380],{"type":45,"value":1277},{"type":40,"tag":244,"props":1382,"children":1383},{"style":257},[1384],{"type":45,"value":1308},{"type":40,"tag":244,"props":1386,"children":1388},{"class":246,"line":1387},5,[1389,1393,1398,1402,1406],{"type":40,"tag":244,"props":1390,"children":1391},{"style":257},[1392],{"type":45,"value":1142},{"type":40,"tag":244,"props":1394,"children":1395},{"style":1145},[1396],{"type":45,"value":1397},"data",{"type":40,"tag":244,"props":1399,"children":1400},{"style":257},[1401],{"type":45,"value":271},{"type":40,"tag":244,"props":1403,"children":1404},{"style":257},[1405],{"type":45,"value":1157},{"type":40,"tag":244,"props":1407,"children":1408},{"style":257},[1409],{"type":45,"value":1410}," [\n",{"type":40,"tag":244,"props":1412,"children":1414},{"class":246,"line":1413},6,[1415],{"type":40,"tag":244,"props":1416,"children":1417},{"style":257},[1418],{"type":45,"value":1419},"    {\n",{"type":40,"tag":244,"props":1421,"children":1423},{"class":246,"line":1422},7,[1424,1429,1433,1437,1441,1445,1450,1454,1458,1462,1467,1471,1475,1479,1483,1487,1491,1495,1499,1503,1507,1511,1515,1519],{"type":40,"tag":244,"props":1425,"children":1426},{"style":257},[1427],{"type":45,"value":1428},"      \"",{"type":40,"tag":244,"props":1430,"children":1431},{"style":251},[1432],{"type":45,"value":769},{"type":40,"tag":244,"props":1434,"children":1435},{"style":257},[1436],{"type":45,"value":271},{"type":40,"tag":244,"props":1438,"children":1439},{"style":257},[1440],{"type":45,"value":1157},{"type":40,"tag":244,"props":1442,"children":1443},{"style":257},[1444],{"type":45,"value":260},{"type":40,"tag":244,"props":1446,"children":1447},{"style":263},[1448],{"type":45,"value":1449},"...",{"type":40,"tag":244,"props":1451,"children":1452},{"style":257},[1453],{"type":45,"value":271},{"type":40,"tag":244,"props":1455,"children":1456},{"style":257},[1457],{"type":45,"value":1229},{"type":40,"tag":244,"props":1459,"children":1460},{"style":257},[1461],{"type":45,"value":260},{"type":40,"tag":244,"props":1463,"children":1464},{"style":251},[1465],{"type":45,"value":1466},"characterId",{"type":40,"tag":244,"props":1468,"children":1469},{"style":257},[1470],{"type":45,"value":271},{"type":40,"tag":244,"props":1472,"children":1473},{"style":257},[1474],{"type":45,"value":1157},{"type":40,"tag":244,"props":1476,"children":1477},{"style":257},[1478],{"type":45,"value":260},{"type":40,"tag":244,"props":1480,"children":1481},{"style":263},[1482],{"type":45,"value":1449},{"type":40,"tag":244,"props":1484,"children":1485},{"style":257},[1486],{"type":45,"value":271},{"type":40,"tag":244,"props":1488,"children":1489},{"style":257},[1490],{"type":45,"value":1229},{"type":40,"tag":244,"props":1492,"children":1493},{"style":257},[1494],{"type":45,"value":260},{"type":40,"tag":244,"props":1496,"children":1497},{"style":251},[1498],{"type":45,"value":953},{"type":40,"tag":244,"props":1500,"children":1501},{"style":257},[1502],{"type":45,"value":271},{"type":40,"tag":244,"props":1504,"children":1505},{"style":257},[1506],{"type":45,"value":1157},{"type":40,"tag":244,"props":1508,"children":1509},{"style":257},[1510],{"type":45,"value":260},{"type":40,"tag":244,"props":1512,"children":1513},{"style":263},[1514],{"type":45,"value":1449},{"type":40,"tag":244,"props":1516,"children":1517},{"style":257},[1518],{"type":45,"value":271},{"type":40,"tag":244,"props":1520,"children":1521},{"style":257},[1522],{"type":45,"value":1175},{"type":40,"tag":244,"props":1524,"children":1526},{"class":246,"line":1525},8,[1527,1531,1536,1540,1544,1548,1552,1556,1561,1565,1569,1573,1578,1582],{"type":40,"tag":244,"props":1528,"children":1529},{"style":257},[1530],{"type":45,"value":1428},{"type":40,"tag":244,"props":1532,"children":1533},{"style":251},[1534],{"type":45,"value":1535},"rating",{"type":40,"tag":244,"props":1537,"children":1538},{"style":257},[1539],{"type":45,"value":271},{"type":40,"tag":244,"props":1541,"children":1542},{"style":257},[1543],{"type":45,"value":1157},{"type":40,"tag":244,"props":1545,"children":1546},{"style":1221},[1547],{"type":45,"value":1303},{"type":40,"tag":244,"props":1549,"children":1550},{"style":257},[1551],{"type":45,"value":1229},{"type":40,"tag":244,"props":1553,"children":1554},{"style":257},[1555],{"type":45,"value":260},{"type":40,"tag":244,"props":1557,"children":1558},{"style":251},[1559],{"type":45,"value":1560},"message",{"type":40,"tag":244,"props":1562,"children":1563},{"style":257},[1564],{"type":45,"value":271},{"type":40,"tag":244,"props":1566,"children":1567},{"style":257},[1568],{"type":45,"value":1157},{"type":40,"tag":244,"props":1570,"children":1571},{"style":257},[1572],{"type":45,"value":260},{"type":40,"tag":244,"props":1574,"children":1575},{"style":263},[1576],{"type":45,"value":1577},"Thoughtful and grounded.",{"type":40,"tag":244,"props":1579,"children":1580},{"style":257},[1581],{"type":45,"value":271},{"type":40,"tag":244,"props":1583,"children":1584},{"style":257},[1585],{"type":45,"value":1175},{"type":40,"tag":244,"props":1587,"children":1589},{"class":246,"line":1588},9,[1590,1594,1599,1603,1607,1611,1616,1620,1624,1628,1633,1637,1641,1645,1650,1654,1658,1662,1667,1671,1675],{"type":40,"tag":244,"props":1591,"children":1592},{"style":257},[1593],{"type":45,"value":1428},{"type":40,"tag":244,"props":1595,"children":1596},{"style":251},[1597],{"type":45,"value":1598},"locale",{"type":40,"tag":244,"props":1600,"children":1601},{"style":257},[1602],{"type":45,"value":271},{"type":40,"tag":244,"props":1604,"children":1605},{"style":257},[1606],{"type":45,"value":1157},{"type":40,"tag":244,"props":1608,"children":1609},{"style":257},[1610],{"type":45,"value":260},{"type":40,"tag":244,"props":1612,"children":1613},{"style":263},[1614],{"type":45,"value":1615},"en",{"type":40,"tag":244,"props":1617,"children":1618},{"style":257},[1619],{"type":45,"value":271},{"type":40,"tag":244,"props":1621,"children":1622},{"style":257},[1623],{"type":45,"value":1229},{"type":40,"tag":244,"props":1625,"children":1626},{"style":257},[1627],{"type":45,"value":260},{"type":40,"tag":244,"props":1629,"children":1630},{"style":251},[1631],{"type":45,"value":1632},"username",{"type":40,"tag":244,"props":1634,"children":1635},{"style":257},[1636],{"type":45,"value":271},{"type":40,"tag":244,"props":1638,"children":1639},{"style":257},[1640],{"type":45,"value":1157},{"type":40,"tag":244,"props":1642,"children":1643},{"style":257},[1644],{"type":45,"value":260},{"type":40,"tag":244,"props":1646,"children":1647},{"style":263},[1648],{"type":45,"value":1649},"product_user_42",{"type":40,"tag":244,"props":1651,"children":1652},{"style":257},[1653],{"type":45,"value":271},{"type":40,"tag":244,"props":1655,"children":1656},{"style":257},[1657],{"type":45,"value":1229},{"type":40,"tag":244,"props":1659,"children":1660},{"style":257},[1661],{"type":45,"value":260},{"type":40,"tag":244,"props":1663,"children":1664},{"style":251},[1665],{"type":45,"value":1666},"isOwner",{"type":40,"tag":244,"props":1668,"children":1669},{"style":257},[1670],{"type":45,"value":271},{"type":40,"tag":244,"props":1672,"children":1673},{"style":257},[1674],{"type":45,"value":1157},{"type":40,"tag":244,"props":1676,"children":1677},{"style":257},[1678],{"type":45,"value":1679}," false,\n",{"type":40,"tag":244,"props":1681,"children":1683},{"class":246,"line":1682},10,[1684,1688,1693,1697,1701,1705,1710],{"type":40,"tag":244,"props":1685,"children":1686},{"style":257},[1687],{"type":45,"value":1428},{"type":40,"tag":244,"props":1689,"children":1690},{"style":251},[1691],{"type":45,"value":1692},"userAvatarUrl",{"type":40,"tag":244,"props":1694,"children":1695},{"style":257},[1696],{"type":45,"value":271},{"type":40,"tag":244,"props":1698,"children":1699},{"style":257},[1700],{"type":45,"value":1157},{"type":40,"tag":244,"props":1702,"children":1703},{"style":257},[1704],{"type":45,"value":260},{"type":40,"tag":244,"props":1706,"children":1707},{"style":263},[1708],{"type":45,"value":1709},"https:\u002F\u002Fcdn.venice.ai\u002F...",{"type":40,"tag":244,"props":1711,"children":1712},{"style":257},[1713],{"type":45,"value":305},{"type":40,"tag":244,"props":1715,"children":1717},{"class":246,"line":1716},11,[1718],{"type":40,"tag":244,"props":1719,"children":1720},{"style":257},[1721],{"type":45,"value":1722},"    }\n",{"type":40,"tag":244,"props":1724,"children":1726},{"class":246,"line":1725},12,[1727],{"type":40,"tag":244,"props":1728,"children":1729},{"style":257},[1730],{"type":45,"value":1731},"  ]\n",{"type":40,"tag":244,"props":1733,"children":1735},{"class":246,"line":1734},13,[1736],{"type":40,"tag":244,"props":1737,"children":1738},{"style":257},[1739],{"type":45,"value":1740},"}\n",{"type":40,"tag":48,"props":1742,"children":1743},{},[1744,1746,1752,1754,1759,1760,1765,1766,1771,1772,1778],{"type":45,"value":1745},"Also sets ",{"type":40,"tag":62,"props":1747,"children":1749},{"className":1748},[],[1750],{"type":45,"value":1751},"x-pagination-*",{"type":45,"value":1753}," response headers (",{"type":40,"tag":62,"props":1755,"children":1757},{"className":1756},[],[1758],{"type":45,"value":698},{"type":45,"value":404},{"type":40,"tag":62,"props":1761,"children":1763},{"className":1762},[],[1764],{"type":45,"value":1210},{"type":45,"value":404},{"type":40,"tag":62,"props":1767,"children":1769},{"className":1768},[],[1770],{"type":45,"value":1264},{"type":45,"value":404},{"type":40,"tag":62,"props":1773,"children":1775},{"className":1774},[],[1776],{"type":45,"value":1777},"total-pages",{"type":45,"value":919},{"type":40,"tag":79,"props":1780,"children":1782},{"id":1781},"using-a-character-in-chat",[1783],{"type":45,"value":1784},"Using a character in chat",{"type":40,"tag":307,"props":1786,"children":1788},{"id":1787},"minimal",[1789],{"type":45,"value":1790},"Minimal",{"type":40,"tag":233,"props":1792,"children":1794},{"className":1120,"code":1793,"language":1122,"meta":238,"style":238},"{\n  \"model\": \"zai-org-glm-5-1\",\n  \"venice_parameters\": { \"character_slug\": \"alan-watts\" },\n  \"messages\": [\n    { \"role\": \"user\", \"content\": \"What's the nature of mind?\" }\n  ]\n}\n",[1795],{"type":40,"tag":62,"props":1796,"children":1797},{"__ignoreMap":238},[1798,1805,1841,1899,1923,2000,2007],{"type":40,"tag":244,"props":1799,"children":1800},{"class":246,"line":247},[1801],{"type":40,"tag":244,"props":1802,"children":1803},{"style":257},[1804],{"type":45,"value":1134},{"type":40,"tag":244,"props":1806,"children":1807},{"class":246,"line":280},[1808,1812,1817,1821,1825,1829,1833,1837],{"type":40,"tag":244,"props":1809,"children":1810},{"style":257},[1811],{"type":45,"value":1142},{"type":40,"tag":244,"props":1813,"children":1814},{"style":1145},[1815],{"type":45,"value":1816},"model",{"type":40,"tag":244,"props":1818,"children":1819},{"style":257},[1820],{"type":45,"value":271},{"type":40,"tag":244,"props":1822,"children":1823},{"style":257},[1824],{"type":45,"value":1157},{"type":40,"tag":244,"props":1826,"children":1827},{"style":257},[1828],{"type":45,"value":260},{"type":40,"tag":244,"props":1830,"children":1831},{"style":263},[1832],{"type":45,"value":467},{"type":40,"tag":244,"props":1834,"children":1835},{"style":257},[1836],{"type":45,"value":271},{"type":40,"tag":244,"props":1838,"children":1839},{"style":257},[1840],{"type":45,"value":1175},{"type":40,"tag":244,"props":1842,"children":1843},{"class":246,"line":1178},[1844,1848,1853,1857,1861,1865,1869,1873,1877,1881,1885,1890,1894],{"type":40,"tag":244,"props":1845,"children":1846},{"style":257},[1847],{"type":45,"value":1142},{"type":40,"tag":244,"props":1849,"children":1850},{"style":1145},[1851],{"type":45,"value":1852},"venice_parameters",{"type":40,"tag":244,"props":1854,"children":1855},{"style":257},[1856],{"type":45,"value":271},{"type":40,"tag":244,"props":1858,"children":1859},{"style":257},[1860],{"type":45,"value":1157},{"type":40,"tag":244,"props":1862,"children":1863},{"style":257},[1864],{"type":45,"value":1201},{"type":40,"tag":244,"props":1866,"children":1867},{"style":257},[1868],{"type":45,"value":260},{"type":40,"tag":244,"props":1870,"children":1871},{"style":251},[1872],{"type":45,"value":799},{"type":40,"tag":244,"props":1874,"children":1875},{"style":257},[1876],{"type":45,"value":271},{"type":40,"tag":244,"props":1878,"children":1879},{"style":257},[1880],{"type":45,"value":1157},{"type":40,"tag":244,"props":1882,"children":1883},{"style":257},[1884],{"type":45,"value":260},{"type":40,"tag":244,"props":1886,"children":1887},{"style":263},[1888],{"type":45,"value":1889},"alan-watts",{"type":40,"tag":244,"props":1891,"children":1892},{"style":257},[1893],{"type":45,"value":271},{"type":40,"tag":244,"props":1895,"children":1896},{"style":257},[1897],{"type":45,"value":1898}," },\n",{"type":40,"tag":244,"props":1900,"children":1901},{"class":246,"line":1311},[1902,1906,1911,1915,1919],{"type":40,"tag":244,"props":1903,"children":1904},{"style":257},[1905],{"type":45,"value":1142},{"type":40,"tag":244,"props":1907,"children":1908},{"style":1145},[1909],{"type":45,"value":1910},"messages",{"type":40,"tag":244,"props":1912,"children":1913},{"style":257},[1914],{"type":45,"value":271},{"type":40,"tag":244,"props":1916,"children":1917},{"style":257},[1918],{"type":45,"value":1157},{"type":40,"tag":244,"props":1920,"children":1921},{"style":257},[1922],{"type":45,"value":1410},{"type":40,"tag":244,"props":1924,"children":1925},{"class":246,"line":1387},[1926,1931,1935,1940,1944,1948,1952,1957,1961,1965,1969,1974,1978,1982,1986,1991,1995],{"type":40,"tag":244,"props":1927,"children":1928},{"style":257},[1929],{"type":45,"value":1930},"    {",{"type":40,"tag":244,"props":1932,"children":1933},{"style":257},[1934],{"type":45,"value":260},{"type":40,"tag":244,"props":1936,"children":1937},{"style":251},[1938],{"type":45,"value":1939},"role",{"type":40,"tag":244,"props":1941,"children":1942},{"style":257},[1943],{"type":45,"value":271},{"type":40,"tag":244,"props":1945,"children":1946},{"style":257},[1947],{"type":45,"value":1157},{"type":40,"tag":244,"props":1949,"children":1950},{"style":257},[1951],{"type":45,"value":260},{"type":40,"tag":244,"props":1953,"children":1954},{"style":263},[1955],{"type":45,"value":1956},"user",{"type":40,"tag":244,"props":1958,"children":1959},{"style":257},[1960],{"type":45,"value":271},{"type":40,"tag":244,"props":1962,"children":1963},{"style":257},[1964],{"type":45,"value":1229},{"type":40,"tag":244,"props":1966,"children":1967},{"style":257},[1968],{"type":45,"value":260},{"type":40,"tag":244,"props":1970,"children":1971},{"style":251},[1972],{"type":45,"value":1973},"content",{"type":40,"tag":244,"props":1975,"children":1976},{"style":257},[1977],{"type":45,"value":271},{"type":40,"tag":244,"props":1979,"children":1980},{"style":257},[1981],{"type":45,"value":1157},{"type":40,"tag":244,"props":1983,"children":1984},{"style":257},[1985],{"type":45,"value":260},{"type":40,"tag":244,"props":1987,"children":1988},{"style":263},[1989],{"type":45,"value":1990},"What's the nature of mind?",{"type":40,"tag":244,"props":1992,"children":1993},{"style":257},[1994],{"type":45,"value":271},{"type":40,"tag":244,"props":1996,"children":1997},{"style":257},[1998],{"type":45,"value":1999}," }\n",{"type":40,"tag":244,"props":2001,"children":2002},{"class":246,"line":1413},[2003],{"type":40,"tag":244,"props":2004,"children":2005},{"style":257},[2006],{"type":45,"value":1731},{"type":40,"tag":244,"props":2008,"children":2009},{"class":246,"line":1422},[2010],{"type":40,"tag":244,"props":2011,"children":2012},{"style":257},[2013],{"type":45,"value":1740},{"type":40,"tag":48,"props":2015,"children":2016},{},[2017,2019,2025,2027,2033,2035,2041],{"type":45,"value":2018},"The character's system prompt is injected by Venice. ",{"type":40,"tag":62,"props":2020,"children":2022},{"className":2021},[],[2023],{"type":45,"value":2024},"include_venice_system_prompt",{"type":45,"value":2026}," defaults to ",{"type":40,"tag":62,"props":2028,"children":2030},{"className":2029},[],[2031],{"type":45,"value":2032},"true",{"type":45,"value":2034}," and adds Venice's curated prelude — set it to ",{"type":40,"tag":62,"props":2036,"children":2038},{"className":2037},[],[2039],{"type":45,"value":2040},"false",{"type":45,"value":2042}," for a pure character voice.",{"type":40,"tag":307,"props":2044,"children":2046},{"id":2045},"ignoring-the-characters-backing-model",[2047],{"type":45,"value":2048},"Ignoring the character's backing model",{"type":40,"tag":48,"props":2050,"children":2051},{},[2052],{"type":45,"value":2053},"You can override the model — Venice will still apply the character's system prompt:",{"type":40,"tag":233,"props":2055,"children":2057},{"className":1120,"code":2056,"language":1122,"meta":238,"style":238},"{\n  \"model\": \"kimi-k2-6\",\n  \"venice_parameters\": {\n    \"character_slug\": \"alan-watts\",\n    \"include_venice_system_prompt\": false\n  },\n  \"messages\": [...]\n}\n",[2058],{"type":40,"tag":62,"props":2059,"children":2060},{"__ignoreMap":238},[2061,2068,2103,2127,2163,2187,2195,2228],{"type":40,"tag":244,"props":2062,"children":2063},{"class":246,"line":247},[2064],{"type":40,"tag":244,"props":2065,"children":2066},{"style":257},[2067],{"type":45,"value":1134},{"type":40,"tag":244,"props":2069,"children":2070},{"class":246,"line":280},[2071,2075,2079,2083,2087,2091,2095,2099],{"type":40,"tag":244,"props":2072,"children":2073},{"style":257},[2074],{"type":45,"value":1142},{"type":40,"tag":244,"props":2076,"children":2077},{"style":1145},[2078],{"type":45,"value":1816},{"type":40,"tag":244,"props":2080,"children":2081},{"style":257},[2082],{"type":45,"value":271},{"type":40,"tag":244,"props":2084,"children":2085},{"style":257},[2086],{"type":45,"value":1157},{"type":40,"tag":244,"props":2088,"children":2089},{"style":257},[2090],{"type":45,"value":260},{"type":40,"tag":244,"props":2092,"children":2093},{"style":263},[2094],{"type":45,"value":474},{"type":40,"tag":244,"props":2096,"children":2097},{"style":257},[2098],{"type":45,"value":271},{"type":40,"tag":244,"props":2100,"children":2101},{"style":257},[2102],{"type":45,"value":1175},{"type":40,"tag":244,"props":2104,"children":2105},{"class":246,"line":1178},[2106,2110,2114,2118,2122],{"type":40,"tag":244,"props":2107,"children":2108},{"style":257},[2109],{"type":45,"value":1142},{"type":40,"tag":244,"props":2111,"children":2112},{"style":1145},[2113],{"type":45,"value":1852},{"type":40,"tag":244,"props":2115,"children":2116},{"style":257},[2117],{"type":45,"value":271},{"type":40,"tag":244,"props":2119,"children":2120},{"style":257},[2121],{"type":45,"value":1157},{"type":40,"tag":244,"props":2123,"children":2124},{"style":257},[2125],{"type":45,"value":2126}," {\n",{"type":40,"tag":244,"props":2128,"children":2129},{"class":246,"line":1311},[2130,2135,2139,2143,2147,2151,2155,2159],{"type":40,"tag":244,"props":2131,"children":2132},{"style":257},[2133],{"type":45,"value":2134},"    \"",{"type":40,"tag":244,"props":2136,"children":2137},{"style":251},[2138],{"type":45,"value":799},{"type":40,"tag":244,"props":2140,"children":2141},{"style":257},[2142],{"type":45,"value":271},{"type":40,"tag":244,"props":2144,"children":2145},{"style":257},[2146],{"type":45,"value":1157},{"type":40,"tag":244,"props":2148,"children":2149},{"style":257},[2150],{"type":45,"value":260},{"type":40,"tag":244,"props":2152,"children":2153},{"style":263},[2154],{"type":45,"value":1889},{"type":40,"tag":244,"props":2156,"children":2157},{"style":257},[2158],{"type":45,"value":271},{"type":40,"tag":244,"props":2160,"children":2161},{"style":257},[2162],{"type":45,"value":1175},{"type":40,"tag":244,"props":2164,"children":2165},{"class":246,"line":1387},[2166,2170,2174,2178,2182],{"type":40,"tag":244,"props":2167,"children":2168},{"style":257},[2169],{"type":45,"value":2134},{"type":40,"tag":244,"props":2171,"children":2172},{"style":251},[2173],{"type":45,"value":2024},{"type":40,"tag":244,"props":2175,"children":2176},{"style":257},[2177],{"type":45,"value":271},{"type":40,"tag":244,"props":2179,"children":2180},{"style":257},[2181],{"type":45,"value":1157},{"type":40,"tag":244,"props":2183,"children":2184},{"style":257},[2185],{"type":45,"value":2186}," false\n",{"type":40,"tag":244,"props":2188,"children":2189},{"class":246,"line":1413},[2190],{"type":40,"tag":244,"props":2191,"children":2192},{"style":257},[2193],{"type":45,"value":2194},"  },\n",{"type":40,"tag":244,"props":2196,"children":2197},{"class":246,"line":1422},[2198,2202,2206,2210,2214,2219,2223],{"type":40,"tag":244,"props":2199,"children":2200},{"style":257},[2201],{"type":45,"value":1142},{"type":40,"tag":244,"props":2203,"children":2204},{"style":1145},[2205],{"type":45,"value":1910},{"type":40,"tag":244,"props":2207,"children":2208},{"style":257},[2209],{"type":45,"value":271},{"type":40,"tag":244,"props":2211,"children":2212},{"style":257},[2213],{"type":45,"value":1157},{"type":40,"tag":244,"props":2215,"children":2216},{"style":257},[2217],{"type":45,"value":2218}," [",{"type":40,"tag":244,"props":2220,"children":2221},{"style":274},[2222],{"type":45,"value":1449},{"type":40,"tag":244,"props":2224,"children":2225},{"style":257},[2226],{"type":45,"value":2227},"]\n",{"type":40,"tag":244,"props":2229,"children":2230},{"class":246,"line":1525},[2231],{"type":40,"tag":244,"props":2232,"children":2233},{"style":257},[2234],{"type":45,"value":1740},{"type":40,"tag":48,"props":2236,"children":2237},{},[2238,2240,2245],{"type":45,"value":2239},"Useful when the character's ",{"type":40,"tag":62,"props":2241,"children":2243},{"className":2242},[],[2244],{"type":45,"value":110},{"type":45,"value":2246}," lacks a capability (e.g. function calling, vision) that your app needs.",{"type":40,"tag":307,"props":2248,"children":2250},{"id":2249},"via-feature-suffix-on-the-model-string",[2251,2253,2258],{"type":45,"value":2252},"Via feature suffix on the ",{"type":40,"tag":62,"props":2254,"children":2256},{"className":2255},[],[2257],{"type":45,"value":1816},{"type":45,"value":2259}," string",{"type":40,"tag":233,"props":2261,"children":2263},{"className":1120,"code":2262,"language":1122,"meta":238,"style":238},"{ \"model\": \"zai-org-glm-5-1:character_slug=alan-watts\", \"messages\": [...] }\n",[2264],{"type":40,"tag":62,"props":2265,"children":2266},{"__ignoreMap":238},[2267],{"type":40,"tag":244,"props":2268,"children":2269},{"class":246,"line":247},[2270,2275,2279,2283,2287,2291,2295,2300,2304,2308,2312,2316,2320,2324,2328,2332,2337],{"type":40,"tag":244,"props":2271,"children":2272},{"style":257},[2273],{"type":45,"value":2274},"{",{"type":40,"tag":244,"props":2276,"children":2277},{"style":257},[2278],{"type":45,"value":260},{"type":40,"tag":244,"props":2280,"children":2281},{"style":1145},[2282],{"type":45,"value":1816},{"type":40,"tag":244,"props":2284,"children":2285},{"style":257},[2286],{"type":45,"value":271},{"type":40,"tag":244,"props":2288,"children":2289},{"style":257},[2290],{"type":45,"value":1157},{"type":40,"tag":244,"props":2292,"children":2293},{"style":257},[2294],{"type":45,"value":260},{"type":40,"tag":244,"props":2296,"children":2297},{"style":263},[2298],{"type":45,"value":2299},"zai-org-glm-5-1:character_slug=alan-watts",{"type":40,"tag":244,"props":2301,"children":2302},{"style":257},[2303],{"type":45,"value":271},{"type":40,"tag":244,"props":2305,"children":2306},{"style":257},[2307],{"type":45,"value":1229},{"type":40,"tag":244,"props":2309,"children":2310},{"style":257},[2311],{"type":45,"value":260},{"type":40,"tag":244,"props":2313,"children":2314},{"style":1145},[2315],{"type":45,"value":1910},{"type":40,"tag":244,"props":2317,"children":2318},{"style":257},[2319],{"type":45,"value":271},{"type":40,"tag":244,"props":2321,"children":2322},{"style":257},[2323],{"type":45,"value":1157},{"type":40,"tag":244,"props":2325,"children":2326},{"style":257},[2327],{"type":45,"value":2218},{"type":40,"tag":244,"props":2329,"children":2330},{"style":274},[2331],{"type":45,"value":1449},{"type":40,"tag":244,"props":2333,"children":2334},{"style":257},[2335],{"type":45,"value":2336},"]",{"type":40,"tag":244,"props":2338,"children":2339},{"style":257},[2340],{"type":45,"value":1999},{"type":40,"tag":48,"props":2342,"children":2343},{},[2344,2346,2351,2353,2363],{"type":45,"value":2345},"Useful when the client library (OpenAI SDK, LangChain, etc.) can't add ",{"type":40,"tag":62,"props":2347,"children":2349},{"className":2348},[],[2350],{"type":45,"value":1852},{"type":45,"value":2352},". See ",{"type":40,"tag":211,"props":2354,"children":2356},{"href":2355},"..\u002Fvenice-chat\u002FSKILL.md#model-feature-suffixes",[2357],{"type":40,"tag":62,"props":2358,"children":2360},{"className":2359},[],[2361],{"type":45,"value":2362},"venice-chat",{"type":45,"value":2364}," for the full suffix grammar.",{"type":40,"tag":79,"props":2366,"children":2368},{"id":2367},"patterns",[2369],{"type":45,"value":2370},"Patterns",{"type":40,"tag":307,"props":2372,"children":2374},{"id":2373},"character-picker-ui",[2375],{"type":45,"value":2376},"Character picker UI",{"type":40,"tag":233,"props":2378,"children":2382},{"className":2379,"code":2380,"language":2381,"meta":238,"style":238},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const res = await fetch(`${base}\u002Fcharacters?sortBy=featured&limit=50`, {\n  headers: { Authorization: `Bearer ${process.env.VENICE_API_KEY}` },\n})\nconst { data } = await res.json()\n\u002F\u002F show data[].photoUrl, data[].name, data[].stats.averageRating\n\u002F\u002F pick a slug, then pass into chat:\nawait chat({\n  model: pickedModelId,\n  venice_parameters: { character_slug: pickedSlug },\n  messages: [...]\n})\n","ts",[2383],{"type":40,"tag":62,"props":2384,"children":2385},{"__ignoreMap":238},[2386,2454,2527,2539,2586,2595,2603,2624,2645,2679,2703],{"type":40,"tag":244,"props":2387,"children":2388},{"class":246,"line":247},[2389,2394,2399,2404,2410,2416,2421,2426,2431,2436,2441,2446,2450],{"type":40,"tag":244,"props":2390,"children":2391},{"style":1145},[2392],{"type":45,"value":2393},"const",{"type":40,"tag":244,"props":2395,"children":2396},{"style":274},[2397],{"type":45,"value":2398}," res ",{"type":40,"tag":244,"props":2400,"children":2401},{"style":257},[2402],{"type":45,"value":2403},"=",{"type":40,"tag":244,"props":2405,"children":2407},{"style":2406},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[2408],{"type":45,"value":2409}," await",{"type":40,"tag":244,"props":2411,"children":2413},{"style":2412},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[2414],{"type":45,"value":2415}," fetch",{"type":40,"tag":244,"props":2417,"children":2418},{"style":274},[2419],{"type":45,"value":2420},"(",{"type":40,"tag":244,"props":2422,"children":2423},{"style":257},[2424],{"type":45,"value":2425},"`${",{"type":40,"tag":244,"props":2427,"children":2428},{"style":274},[2429],{"type":45,"value":2430},"base",{"type":40,"tag":244,"props":2432,"children":2433},{"style":257},[2434],{"type":45,"value":2435},"}",{"type":40,"tag":244,"props":2437,"children":2438},{"style":263},[2439],{"type":45,"value":2440},"\u002Fcharacters?sortBy=featured&limit=50",{"type":40,"tag":244,"props":2442,"children":2443},{"style":257},[2444],{"type":45,"value":2445},"`",{"type":40,"tag":244,"props":2447,"children":2448},{"style":257},[2449],{"type":45,"value":1229},{"type":40,"tag":244,"props":2451,"children":2452},{"style":257},[2453],{"type":45,"value":2126},{"type":40,"tag":244,"props":2455,"children":2456},{"class":246,"line":280},[2457,2463,2467,2471,2476,2480,2485,2490,2495,2500,2504,2509,2513,2518,2523],{"type":40,"tag":244,"props":2458,"children":2460},{"style":2459},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[2461],{"type":45,"value":2462},"  headers",{"type":40,"tag":244,"props":2464,"children":2465},{"style":257},[2466],{"type":45,"value":1157},{"type":40,"tag":244,"props":2468,"children":2469},{"style":257},[2470],{"type":45,"value":1201},{"type":40,"tag":244,"props":2472,"children":2473},{"style":2459},[2474],{"type":45,"value":2475}," Authorization",{"type":40,"tag":244,"props":2477,"children":2478},{"style":257},[2479],{"type":45,"value":1157},{"type":40,"tag":244,"props":2481,"children":2482},{"style":257},[2483],{"type":45,"value":2484}," `",{"type":40,"tag":244,"props":2486,"children":2487},{"style":263},[2488],{"type":45,"value":2489},"Bearer ",{"type":40,"tag":244,"props":2491,"children":2492},{"style":257},[2493],{"type":45,"value":2494},"${",{"type":40,"tag":244,"props":2496,"children":2497},{"style":274},[2498],{"type":45,"value":2499},"process",{"type":40,"tag":244,"props":2501,"children":2502},{"style":257},[2503],{"type":45,"value":77},{"type":40,"tag":244,"props":2505,"children":2506},{"style":274},[2507],{"type":45,"value":2508},"env",{"type":40,"tag":244,"props":2510,"children":2511},{"style":257},[2512],{"type":45,"value":77},{"type":40,"tag":244,"props":2514,"children":2515},{"style":274},[2516],{"type":45,"value":2517},"VENICE_API_KEY",{"type":40,"tag":244,"props":2519,"children":2520},{"style":257},[2521],{"type":45,"value":2522},"}`",{"type":40,"tag":244,"props":2524,"children":2525},{"style":257},[2526],{"type":45,"value":1898},{"type":40,"tag":244,"props":2528,"children":2529},{"class":246,"line":1178},[2530,2534],{"type":40,"tag":244,"props":2531,"children":2532},{"style":257},[2533],{"type":45,"value":2435},{"type":40,"tag":244,"props":2535,"children":2536},{"style":274},[2537],{"type":45,"value":2538},")\n",{"type":40,"tag":244,"props":2540,"children":2541},{"class":246,"line":1311},[2542,2546,2550,2555,2559,2564,2568,2573,2577,2581],{"type":40,"tag":244,"props":2543,"children":2544},{"style":1145},[2545],{"type":45,"value":2393},{"type":40,"tag":244,"props":2547,"children":2548},{"style":257},[2549],{"type":45,"value":1201},{"type":40,"tag":244,"props":2551,"children":2552},{"style":274},[2553],{"type":45,"value":2554}," data ",{"type":40,"tag":244,"props":2556,"children":2557},{"style":257},[2558],{"type":45,"value":2435},{"type":40,"tag":244,"props":2560,"children":2561},{"style":257},[2562],{"type":45,"value":2563}," =",{"type":40,"tag":244,"props":2565,"children":2566},{"style":2406},[2567],{"type":45,"value":2409},{"type":40,"tag":244,"props":2569,"children":2570},{"style":274},[2571],{"type":45,"value":2572}," res",{"type":40,"tag":244,"props":2574,"children":2575},{"style":257},[2576],{"type":45,"value":77},{"type":40,"tag":244,"props":2578,"children":2579},{"style":2412},[2580],{"type":45,"value":1122},{"type":40,"tag":244,"props":2582,"children":2583},{"style":274},[2584],{"type":45,"value":2585},"()\n",{"type":40,"tag":244,"props":2587,"children":2588},{"class":246,"line":1387},[2589],{"type":40,"tag":244,"props":2590,"children":2592},{"style":2591},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[2593],{"type":45,"value":2594},"\u002F\u002F show data[].photoUrl, data[].name, data[].stats.averageRating\n",{"type":40,"tag":244,"props":2596,"children":2597},{"class":246,"line":1413},[2598],{"type":40,"tag":244,"props":2599,"children":2600},{"style":2591},[2601],{"type":45,"value":2602},"\u002F\u002F pick a slug, then pass into chat:\n",{"type":40,"tag":244,"props":2604,"children":2605},{"class":246,"line":1422},[2606,2611,2616,2620],{"type":40,"tag":244,"props":2607,"children":2608},{"style":2406},[2609],{"type":45,"value":2610},"await",{"type":40,"tag":244,"props":2612,"children":2613},{"style":2412},[2614],{"type":45,"value":2615}," chat",{"type":40,"tag":244,"props":2617,"children":2618},{"style":274},[2619],{"type":45,"value":2420},{"type":40,"tag":244,"props":2621,"children":2622},{"style":257},[2623],{"type":45,"value":1134},{"type":40,"tag":244,"props":2625,"children":2626},{"class":246,"line":1525},[2627,2632,2636,2641],{"type":40,"tag":244,"props":2628,"children":2629},{"style":2459},[2630],{"type":45,"value":2631},"  model",{"type":40,"tag":244,"props":2633,"children":2634},{"style":257},[2635],{"type":45,"value":1157},{"type":40,"tag":244,"props":2637,"children":2638},{"style":274},[2639],{"type":45,"value":2640}," pickedModelId",{"type":40,"tag":244,"props":2642,"children":2643},{"style":257},[2644],{"type":45,"value":1175},{"type":40,"tag":244,"props":2646,"children":2647},{"class":246,"line":1588},[2648,2653,2657,2661,2666,2670,2675],{"type":40,"tag":244,"props":2649,"children":2650},{"style":2459},[2651],{"type":45,"value":2652},"  venice_parameters",{"type":40,"tag":244,"props":2654,"children":2655},{"style":257},[2656],{"type":45,"value":1157},{"type":40,"tag":244,"props":2658,"children":2659},{"style":257},[2660],{"type":45,"value":1201},{"type":40,"tag":244,"props":2662,"children":2663},{"style":2459},[2664],{"type":45,"value":2665}," character_slug",{"type":40,"tag":244,"props":2667,"children":2668},{"style":257},[2669],{"type":45,"value":1157},{"type":40,"tag":244,"props":2671,"children":2672},{"style":274},[2673],{"type":45,"value":2674}," pickedSlug ",{"type":40,"tag":244,"props":2676,"children":2677},{"style":257},[2678],{"type":45,"value":1308},{"type":40,"tag":244,"props":2680,"children":2681},{"class":246,"line":1682},[2682,2687,2691,2695,2699],{"type":40,"tag":244,"props":2683,"children":2684},{"style":2459},[2685],{"type":45,"value":2686},"  messages",{"type":40,"tag":244,"props":2688,"children":2689},{"style":257},[2690],{"type":45,"value":1157},{"type":40,"tag":244,"props":2692,"children":2693},{"style":274},[2694],{"type":45,"value":2218},{"type":40,"tag":244,"props":2696,"children":2697},{"style":257},[2698],{"type":45,"value":1449},{"type":40,"tag":244,"props":2700,"children":2701},{"style":274},[2702],{"type":45,"value":2227},{"type":40,"tag":244,"props":2704,"children":2705},{"class":246,"line":1716},[2706,2710],{"type":40,"tag":244,"props":2707,"children":2708},{"style":257},[2709],{"type":45,"value":2435},{"type":40,"tag":244,"props":2711,"children":2712},{"style":274},[2713],{"type":45,"value":2538},{"type":40,"tag":307,"props":2715,"children":2717},{"id":2716},"filter-for-family-friendly-web",[2718],{"type":45,"value":2719},"Filter for family-friendly + web",{"type":40,"tag":233,"props":2721,"children":2723},{"className":235,"code":2722,"language":237,"meta":238,"style":238},"\u002Fcharacters?isAdult=false&isWebEnabled=true&sortBy=highlyRatedAndRecent\n",[2724],{"type":40,"tag":62,"props":2725,"children":2726},{"__ignoreMap":238},[2727],{"type":40,"tag":244,"props":2728,"children":2729},{"class":246,"line":247},[2730,2735,2739,2743,2748,2752,2756,2760,2764,2768,2772],{"type":40,"tag":244,"props":2731,"children":2732},{"style":251},[2733],{"type":45,"value":2734},"\u002Fcharacters?isAdult",{"type":40,"tag":244,"props":2736,"children":2737},{"style":263},[2738],{"type":45,"value":2403},{"type":40,"tag":244,"props":2740,"children":2741},{"style":2412},[2742],{"type":45,"value":2040},{"type":40,"tag":244,"props":2744,"children":2745},{"style":257},[2746],{"type":45,"value":2747},"&",{"type":40,"tag":244,"props":2749,"children":2750},{"style":274},[2751],{"type":45,"value":559},{"type":40,"tag":244,"props":2753,"children":2754},{"style":257},[2755],{"type":45,"value":2403},{"type":40,"tag":244,"props":2757,"children":2758},{"style":263},[2759],{"type":45,"value":2032},{"type":40,"tag":244,"props":2761,"children":2762},{"style":257},[2763],{"type":45,"value":2747},{"type":40,"tag":244,"props":2765,"children":2766},{"style":274},[2767],{"type":45,"value":590},{"type":40,"tag":244,"props":2769,"children":2770},{"style":257},[2771],{"type":45,"value":2403},{"type":40,"tag":244,"props":2773,"children":2774},{"style":263},[2775],{"type":45,"value":2776},"highlyRatedAndRecent\n",{"type":40,"tag":307,"props":2778,"children":2780},{"id":2779},"search-by-hashtag",[2781],{"type":45,"value":2782},"Search by hashtag",{"type":40,"tag":233,"props":2784,"children":2786},{"className":235,"code":2785,"language":237,"meta":238,"style":238},"\u002Fcharacters?search=%23Philosophy\n",[2787],{"type":40,"tag":62,"props":2788,"children":2789},{"__ignoreMap":238},[2790],{"type":40,"tag":244,"props":2791,"children":2792},{"class":246,"line":247},[2793,2798],{"type":40,"tag":244,"props":2794,"children":2795},{"style":251},[2796],{"type":45,"value":2797},"\u002Fcharacters?search",{"type":40,"tag":244,"props":2799,"children":2800},{"style":263},[2801],{"type":45,"value":2802},"=%23Philosophy\n",{"type":40,"tag":79,"props":2804,"children":2806},{"id":2805},"errors",[2807],{"type":45,"value":2808},"Errors",{"type":40,"tag":127,"props":2810,"children":2811},{},[2812,2828],{"type":40,"tag":131,"props":2813,"children":2814},{},[2815],{"type":40,"tag":135,"props":2816,"children":2817},{},[2818,2823],{"type":40,"tag":139,"props":2819,"children":2820},{},[2821],{"type":45,"value":2822},"Code",{"type":40,"tag":139,"props":2824,"children":2825},{},[2826],{"type":45,"value":2827},"Meaning",{"type":40,"tag":150,"props":2829,"children":2830},{},[2831,2855,2872,2888],{"type":40,"tag":135,"props":2832,"children":2833},{},[2834,2843],{"type":40,"tag":157,"props":2835,"children":2836},{},[2837],{"type":40,"tag":62,"props":2838,"children":2840},{"className":2839},[],[2841],{"type":45,"value":2842},"400",{"type":40,"tag":157,"props":2844,"children":2845},{},[2846,2848,2854],{"type":45,"value":2847},"Bad query params (e.g. ",{"type":40,"tag":62,"props":2849,"children":2851},{"className":2850},[],[2852],{"type":45,"value":2853},"limit > 100",{"type":45,"value":919},{"type":40,"tag":135,"props":2856,"children":2857},{},[2858,2867],{"type":40,"tag":157,"props":2859,"children":2860},{},[2861],{"type":40,"tag":62,"props":2862,"children":2864},{"className":2863},[],[2865],{"type":45,"value":2866},"401",{"type":40,"tag":157,"props":2868,"children":2869},{},[2870],{"type":45,"value":2871},"Missing or invalid auth. All three endpoints require a Bearer key or SIWE header.",{"type":40,"tag":135,"props":2873,"children":2874},{},[2875,2883],{"type":40,"tag":157,"props":2876,"children":2877},{},[2878],{"type":40,"tag":62,"props":2879,"children":2881},{"className":2880},[],[2882],{"type":45,"value":1047},{"type":40,"tag":157,"props":2884,"children":2885},{},[2886],{"type":45,"value":2887},"Unknown slug.",{"type":40,"tag":135,"props":2889,"children":2890},{},[2891,2900],{"type":40,"tag":157,"props":2892,"children":2893},{},[2894],{"type":40,"tag":62,"props":2895,"children":2897},{"className":2896},[],[2898],{"type":45,"value":2899},"500",{"type":40,"tag":157,"props":2901,"children":2902},{},[2903],{"type":45,"value":2904},"Transient. Retry.",{"type":40,"tag":79,"props":2906,"children":2908},{"id":2907},"gotchas",[2909],{"type":45,"value":2910},"Gotchas",{"type":40,"tag":86,"props":2912,"children":2913},{},[2914,2926,2960,2990,3017],{"type":40,"tag":90,"props":2915,"children":2916},{},[2917,2919,2924],{"type":45,"value":2918},"This is ",{"type":40,"tag":54,"props":2920,"children":2921},{},[2922],{"type":45,"value":2923},"Preview API",{"type":45,"value":2925}," — response shape may change.",{"type":40,"tag":90,"props":2927,"children":2928},{},[2929,2931,2936,2938,2944,2946,2951,2953,2958],{"type":45,"value":2930},"Slugs are the ",{"type":40,"tag":54,"props":2932,"children":2933},{},[2934],{"type":45,"value":2935},"public ID",{"type":45,"value":2937}," on the character's page (",{"type":40,"tag":62,"props":2939,"children":2941},{"className":2940},[],[2942],{"type":45,"value":2943},"venice.ai\u002Fc\u002F\u003Cslug>",{"type":45,"value":2945},"). They are ",{"type":40,"tag":54,"props":2947,"children":2948},{},[2949],{"type":45,"value":2950},"not",{"type":45,"value":2952}," the internal ",{"type":40,"tag":62,"props":2954,"children":2956},{"className":2955},[],[2957],{"type":45,"value":769},{"type":45,"value":2959}," UUID.",{"type":40,"tag":90,"props":2961,"children":2962},{},[2963,2968,2969,2974,2975,2980,2982,2988],{"type":40,"tag":62,"props":2964,"children":2966},{"className":2965},[],[2967],{"type":45,"value":829},{"type":45,"value":505},{"type":40,"tag":62,"props":2970,"children":2972},{"className":2971},[],[2973],{"type":45,"value":836},{"type":45,"value":505},{"type":40,"tag":62,"props":2976,"children":2978},{"className":2977},[],[2979],{"type":45,"value":1692},{"type":45,"value":2981}," can be ",{"type":40,"tag":62,"props":2983,"children":2985},{"className":2984},[],[2986],{"type":45,"value":2987},"null",{"type":45,"value":2989}," — don't assume they exist.",{"type":40,"tag":90,"props":2991,"children":2992},{},[2993,2995,3000,3002,3007,3009,3015],{"type":45,"value":2994},"Character ",{"type":40,"tag":62,"props":2996,"children":2998},{"className":2997},[],[2999],{"type":45,"value":110},{"type":45,"value":3001}," may be gated (Pro, beta). If you always reuse the character's ",{"type":40,"tag":62,"props":3003,"children":3005},{"className":3004},[],[3006],{"type":45,"value":110},{"type":45,"value":3008},", handle ",{"type":40,"tag":62,"props":3010,"children":3012},{"className":3011},[],[3013],{"type":45,"value":3014},"401 \"only available to Pro users\"",{"type":45,"value":3016}," gracefully.",{"type":40,"tag":90,"props":3018,"children":3019},{},[3020,3022,3028],{"type":45,"value":3021},"Adult-flagged characters are omitted unless ",{"type":40,"tag":62,"props":3023,"children":3025},{"className":3024},[],[3026],{"type":45,"value":3027},"isAdult=true",{"type":45,"value":3029}," is explicitly passed.",{"type":40,"tag":3031,"props":3032,"children":3033},"style",{},[3034],{"type":45,"value":3035},"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":3037,"total":3195},[3038,3054,3065,3078,3092,3107,3124,3136,3152,3158,3170,3184],{"slug":3039,"name":3039,"fn":3040,"description":3041,"org":3042,"tags":3043,"stars":23,"repoUrl":24,"updatedAt":3053},"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},[3044,3047,3050],{"name":3045,"slug":3046,"type":16},"API Development","api-development",{"name":3048,"slug":3049,"type":16},"Authentication","authentication",{"name":3051,"slug":3052,"type":16},"Security","security","2026-07-17T06:05:40.24171",{"slug":3055,"name":3055,"fn":3056,"description":3057,"org":3058,"tags":3059,"stars":23,"repoUrl":24,"updatedAt":3064},"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},[3060,3061],{"name":3045,"slug":3046,"type":16},{"name":3062,"slug":3063,"type":16},"Documentation","documentation","2026-08-01T05:43:18.703041",{"slug":3066,"name":3066,"fn":3067,"description":3068,"org":3069,"tags":3070,"stars":23,"repoUrl":24,"updatedAt":3077},"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},[3071,3074],{"name":3072,"slug":3073,"type":16},"Audio","audio",{"name":3075,"slug":3076,"type":16},"Creative","creative","2026-07-17T06:04:02.174106",{"slug":3079,"name":3079,"fn":3080,"description":3081,"org":3082,"tags":3083,"stars":23,"repoUrl":24,"updatedAt":3091},"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},[3084,3085,3088],{"name":3072,"slug":3073,"type":16},{"name":3086,"slug":3087,"type":16},"Speech","speech",{"name":3089,"slug":3090,"type":16},"Text-to-Speech","text-to-speech","2026-08-01T05:43:12.713524",{"slug":3093,"name":3093,"fn":3094,"description":3095,"org":3096,"tags":3097,"stars":23,"repoUrl":24,"updatedAt":3106},"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},[3098,3099,3102,3103],{"name":3072,"slug":3073,"type":16},{"name":3100,"slug":3101,"type":16},"Data Extraction","data-extraction",{"name":3086,"slug":3087,"type":16},{"name":3104,"slug":3105,"type":16},"Transcription","transcription","2026-07-17T06:04:05.524355",{"slug":3108,"name":3108,"fn":3109,"description":3110,"org":3111,"tags":3112,"stars":23,"repoUrl":24,"updatedAt":3123},"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},[3113,3114,3117,3120],{"name":3100,"slug":3101,"type":16},{"name":3115,"slug":3116,"type":16},"DOCX","docx",{"name":3118,"slug":3119,"type":16},"PDF","pdf",{"name":3121,"slug":3122,"type":16},"Spreadsheets","spreadsheets","2026-07-17T06:04:00.77979",{"slug":220,"name":220,"fn":3125,"description":3126,"org":3127,"tags":3128,"stars":23,"repoUrl":24,"updatedAt":3135},"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},[3129,3130,3133],{"name":3045,"slug":3046,"type":16},{"name":3131,"slug":3132,"type":16},"Auth","auth",{"name":3134,"slug":3134,"type":16},"x402","2026-08-01T05:43:14.726965",{"slug":3137,"name":3137,"fn":3138,"description":3139,"org":3140,"tags":3141,"stars":23,"repoUrl":24,"updatedAt":3151},"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},[3142,3145,3148],{"name":3143,"slug":3144,"type":16},"Analytics","analytics",{"name":3146,"slug":3147,"type":16},"Finance","finance",{"name":3149,"slug":3150,"type":16},"Reporting","reporting","2026-08-01T05:43:13.766419",{"slug":4,"name":4,"fn":5,"description":6,"org":3153,"tags":3154,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3155,3156,3157],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"slug":2362,"name":2362,"fn":3159,"description":3160,"org":3161,"tags":3162,"stars":23,"repoUrl":24,"updatedAt":3169},"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},[3163,3164,3165,3166],{"name":21,"slug":22,"type":16},{"name":3045,"slug":3046,"type":16},{"name":14,"slug":15,"type":16},{"name":3167,"slug":3168,"type":16},"Multimodal","multimodal","2026-08-01T05:43:15.821764",{"slug":3171,"name":3171,"fn":3172,"description":3173,"org":3174,"tags":3175,"stars":23,"repoUrl":24,"updatedAt":3183},"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},[3176,3177,3180],{"name":3045,"slug":3046,"type":16},{"name":3178,"slug":3179,"type":16},"Ethereum","ethereum",{"name":3181,"slug":3182,"type":16},"Web3","web3","2026-08-01T05:43:22.78028",{"slug":3185,"name":3185,"fn":3186,"description":3187,"org":3188,"tags":3189,"stars":23,"repoUrl":24,"updatedAt":3194},"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},[3190,3193],{"name":3191,"slug":3192,"type":16},"Data Analysis","data-analysis",{"name":14,"slug":15,"type":16},"2026-07-17T06:07:34.97752",20,{"items":3197,"total":3195},[3198,3204,3209,3214,3220,3227,3234],{"slug":3039,"name":3039,"fn":3040,"description":3041,"org":3199,"tags":3200,"stars":23,"repoUrl":24,"updatedAt":3053},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3201,3202,3203],{"name":3045,"slug":3046,"type":16},{"name":3048,"slug":3049,"type":16},{"name":3051,"slug":3052,"type":16},{"slug":3055,"name":3055,"fn":3056,"description":3057,"org":3205,"tags":3206,"stars":23,"repoUrl":24,"updatedAt":3064},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3207,3208],{"name":3045,"slug":3046,"type":16},{"name":3062,"slug":3063,"type":16},{"slug":3066,"name":3066,"fn":3067,"description":3068,"org":3210,"tags":3211,"stars":23,"repoUrl":24,"updatedAt":3077},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3212,3213],{"name":3072,"slug":3073,"type":16},{"name":3075,"slug":3076,"type":16},{"slug":3079,"name":3079,"fn":3080,"description":3081,"org":3215,"tags":3216,"stars":23,"repoUrl":24,"updatedAt":3091},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3217,3218,3219],{"name":3072,"slug":3073,"type":16},{"name":3086,"slug":3087,"type":16},{"name":3089,"slug":3090,"type":16},{"slug":3093,"name":3093,"fn":3094,"description":3095,"org":3221,"tags":3222,"stars":23,"repoUrl":24,"updatedAt":3106},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3223,3224,3225,3226],{"name":3072,"slug":3073,"type":16},{"name":3100,"slug":3101,"type":16},{"name":3086,"slug":3087,"type":16},{"name":3104,"slug":3105,"type":16},{"slug":3108,"name":3108,"fn":3109,"description":3110,"org":3228,"tags":3229,"stars":23,"repoUrl":24,"updatedAt":3123},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3230,3231,3232,3233],{"name":3100,"slug":3101,"type":16},{"name":3115,"slug":3116,"type":16},{"name":3118,"slug":3119,"type":16},{"name":3121,"slug":3122,"type":16},{"slug":220,"name":220,"fn":3125,"description":3126,"org":3235,"tags":3236,"stars":23,"repoUrl":24,"updatedAt":3135},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3237,3238,3239],{"name":3045,"slug":3046,"type":16},{"name":3131,"slug":3132,"type":16},{"name":3134,"slug":3134,"type":16}]