[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vapi-create-squad":3,"mdc-9bd172-key":40,"related-org-vapi-create-squad":6267,"related-repo-vapi-create-squad":6397},{"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":35,"sourceUrl":38,"mdContent":39},"create-squad","create multi-assistant voice agent squads","Create multi-assistant squads in Vapi with handoffs between specialized voice agents. Use when building complex voice workflows that need multiple assistants with different roles, like triage-to-booking or sales-to-support handoffs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"vapi","Vapi","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvapi.png","VapiAI",[13,17,20],{"name":14,"slug":15,"type":16},"Agents","agents","tag",{"name":18,"slug":19,"type":16},"Voice","voice",{"name":21,"slug":22,"type":16},"Multi-Agent","multi-agent",53,"https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fskills","2026-07-20T05:57:30.690452","MIT",7,[29,30,31,32,33,8,34],"agent-skills","claude-code","codex-skills","openclaw-skills","skills","vapi-ai",{"repoUrl":24,"stars":23,"forks":27,"topics":36,"description":37},[29,30,31,32,33,8,34],"A set of skills and MCP connector to allow agents to build Vapi AI agents, from creating tools and assistants to a phone call","https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fskills\u002Ftree\u002FHEAD\u002Fcreate-squad","---\nname: create-squad\ndescription: Create multi-assistant squads in Vapi with handoffs between specialized voice agents. Use when building complex voice workflows that need multiple assistants with different roles, like triage-to-booking or sales-to-support handoffs.\nlicense: MIT\ncompatibility: Requires internet access and a Vapi API key (VAPI_API_KEY).\nmetadata:\n  author: vapi\n  version: \"1.0\"\n---\n\n# Vapi Squad Creation\n\nCreate squads that orchestrate multiple specialized assistants with context-preserving handoffs. Break complex workflows into focused assistants that transfer calls between each other.\n\n> **Setup:** Ensure `VAPI_API_KEY` is set. See the `setup-api-key` skill if needed.\n\n## Why Squads?\n\nSingle assistants with large prompts cause higher hallucination rates, increased costs, and greater latency. Squads solve this by creating focused assistants with specific roles:\n\n- **Triage** → **Booking** → **Confirmation**\n- **Sales** → **Technical Support** → **Billing**\n- **Receptionist** → **Department Specialist**\n\n## Quick Start\n\n### cURL\n\n```bash\ncurl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fsquad \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"name\": \"Support Squad\",\n    \"members\": [\n      {\n        \"assistant\": {\n          \"name\": \"Receptionist\",\n          \"firstMessage\": \"Hello! How can I direct your call today?\",\n          \"model\": {\n            \"provider\": \"openai\",\n            \"model\": \"gpt-4.1\",\n            \"messages\": [\n              {\n                \"role\": \"system\",\n                \"content\": \"You are a receptionist. Determine if the caller needs sales or support, then transfer them to the right department.\"\n              }\n            ],\n            \"tools\": [\n              {\n                \"type\": \"handoff\",\n                \"destinations\": [\n                  {\n                    \"type\": \"assistant\",\n                    \"assistantId\": \"sales-assistant-id\",\n                    \"description\": \"Transfer when the caller asks about pricing, plans, or wants to purchase\"\n                  },\n                  {\n                    \"type\": \"assistant\",\n                    \"assistantId\": \"support-assistant-id\",\n                    \"description\": \"Transfer when the caller has a technical issue or needs help\"\n                  }\n                ]\n              }\n            ]\n          },\n          \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Lily\", \"version\": 2 },\n          \"transcriber\": { \"provider\": \"deepgram\", \"model\": \"nova-3\", \"language\": \"en\" }\n        }\n      },\n      {\n        \"assistantId\": \"sales-assistant-id\"\n      },\n      {\n        \"assistantId\": \"support-assistant-id\"\n      }\n    ]\n  }'\n```\n\n### TypeScript (Server SDK)\n\n```typescript\nimport { VapiClient } from \"@vapi-ai\u002Fserver-sdk\";\n\nconst vapi = new VapiClient({ token: process.env.VAPI_API_KEY! });\n\nconst squad = await vapi.squads.create({\n  name: \"Support Squad\",\n  members: [\n    {\n      assistant: {\n        name: \"Receptionist\",\n        firstMessage: \"Hello! How can I direct your call today?\",\n        model: {\n          provider: \"openai\",\n          model: \"gpt-4.1\",\n          messages: [\n            {\n              role: \"system\",\n              content:\n                \"You are a receptionist. Determine if the caller needs sales or support, then transfer them.\",\n            },\n          ],\n          tools: [\n            {\n              type: \"handoff\",\n              destinations: [\n                {\n                  type: \"assistant\",\n                  assistantId: \"sales-assistant-id\",\n                  description: \"Transfer for pricing and purchasing questions\",\n                },\n                {\n                  type: \"assistant\",\n                  assistantId: \"support-assistant-id\",\n                  description: \"Transfer for technical issues\",\n                },\n              ],\n            },\n          ],\n        },\n        voice: { provider: \"vapi\", voiceId: \"Lily\" },\n        transcriber: { provider: \"deepgram\", model: \"nova-3\", language: \"en\" },\n      },\n    },\n    { assistantId: \"sales-assistant-id\" },\n    { assistantId: \"support-assistant-id\" },\n  ],\n});\n\nconsole.log(\"Squad created:\", squad.id);\n```\n\n## Squad Structure\n\n### Members\n\nThe first member in the array starts the call. Each member is either:\n\n- **Transient** — Defined inline with `assistant: { ... }`\n- **Persistent** — References a saved assistant via `assistantId: \"...\"`\n\n```json\n{\n  \"members\": [\n    { \"assistant\": { \"name\": \"Inline Assistant\", \"...\" : \"...\" } },\n    { \"assistantId\": \"saved-assistant-id\" }\n  ]\n}\n```\n\n### Handoff Tools\n\nHandoff tools define how assistants transfer between each other:\n\n```json\n{\n  \"type\": \"handoff\",\n  \"destinations\": [\n    {\n      \"type\": \"assistant\",\n      \"assistantId\": \"target-assistant-id\",\n      \"description\": \"Clear description of WHEN to transfer. Be specific about trigger conditions.\"\n    }\n  ],\n  \"function\": {\n    \"name\": \"handoff_to_sales\"\n  }\n}\n```\n\n### Assistant Overrides\n\nOverride saved assistant settings within the squad context without modifying the original:\n\n```json\n{\n  \"assistantId\": \"saved-assistant-id\",\n  \"assistantOverrides\": {\n    \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Elliot\", \"version\": 2 },\n    \"firstMessage\": \"Overridden greeting for this squad\"\n  }\n}\n```\n\n### Appending Tools via Overrides\n\nAdd squad-specific tools to a saved assistant:\n\n```json\n{\n  \"assistantId\": \"saved-assistant-id\",\n  \"assistantOverrides\": {\n    \"tools:append\": [\n      {\n        \"type\": \"handoff\",\n        \"destinations\": [\n          {\n            \"type\": \"assistant\",\n            \"assistantId\": \"another-assistant-id\",\n            \"description\": \"Transfer when customer needs billing help\"\n          }\n        ],\n        \"function\": { \"name\": \"handoff_to_billing\" }\n      }\n    ]\n  }\n}\n```\n\n### Members Overrides\n\nApply configuration to ALL members simultaneously:\n\n```json\n{\n  \"members\": [\n    { \"assistant\": { \"name\": \"Agent A\", \"...\" : \"...\" } },\n    { \"assistantId\": \"agent-b-id\" }\n  ],\n  \"membersOverrides\": {\n    \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Elliot\", \"version\": 2 },\n    \"transcriber\": { \"provider\": \"deepgram\", \"model\": \"nova-3\", \"language\": \"en\" }\n  }\n}\n```\n\n## Using Squads in Calls\n\n### Outbound call with a squad\n\n```bash\ncurl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fcall \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"squadId\": \"your-squad-id\",\n    \"phoneNumberId\": \"your-phone-number-id\",\n    \"customer\": {\n      \"number\": \"+11234567890\"\n    }\n  }'\n```\n\n### Transient squad in a call\n\n```json\n{\n  \"squad\": {\n    \"members\": [\n      { \"assistant\": { \"...\" : \"...\" } },\n      { \"assistantId\": \"...\" }\n    ]\n  },\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": { \"number\": \"+11234567890\" }\n}\n```\n\n## Common Patterns\n\n### Clinic Triage → Scheduling\n\n```json\n{\n  \"name\": \"Clinic Squad\",\n  \"members\": [\n    {\n      \"assistant\": {\n        \"name\": \"Triage Nurse\",\n        \"firstMessage\": \"Hello, this is the clinic. How can I help you today?\",\n        \"model\": {\n          \"provider\": \"openai\",\n          \"model\": \"gpt-4.1\",\n          \"messages\": [\n            {\n              \"role\": \"system\",\n              \"content\": \"You are a clinic triage assistant. Assess the caller's needs: if they need an appointment, transfer to scheduling. If it's urgent, transfer to the nurse line.\"\n            }\n          ],\n          \"tools\": [\n            {\n              \"type\": \"handoff\",\n              \"destinations\": [\n                {\n                  \"type\": \"assistant\",\n                  \"assistantId\": \"scheduling-assistant-id\",\n                  \"description\": \"Transfer when caller wants to book, reschedule, or cancel an appointment\"\n                },\n                {\n                  \"type\": \"assistant\",\n                  \"assistantId\": \"nurse-assistant-id\",\n                  \"description\": \"Transfer for urgent medical questions or symptoms\"\n                }\n              ]\n            }\n          ]\n        },\n        \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Lily\", \"version\": 2 }\n      }\n    },\n    { \"assistantId\": \"scheduling-assistant-id\" },\n    { \"assistantId\": \"nurse-assistant-id\" }\n  ]\n}\n```\n\n### E-commerce: Sales → Support → Returns\n\n```json\n{\n  \"name\": \"E-commerce Squad\",\n  \"members\": [\n    {\n      \"assistant\": {\n        \"name\": \"Sales Agent\",\n        \"firstMessage\": \"Welcome to our store! Are you looking to make a purchase today?\",\n        \"model\": {\n          \"provider\": \"openai\",\n          \"model\": \"gpt-4.1\",\n          \"messages\": [\n            { \"role\": \"system\", \"content\": \"You are a sales assistant. Help customers find products and make purchases. Transfer to support for order issues or returns.\" }\n          ],\n          \"tools\": [\n            {\n              \"type\": \"handoff\",\n              \"destinations\": [\n                { \"type\": \"assistant\", \"assistantId\": \"support-id\", \"description\": \"Transfer for order status, shipping, or account issues\" },\n                { \"type\": \"assistant\", \"assistantId\": \"returns-id\", \"description\": \"Transfer for returns, refunds, or exchanges\" }\n              ]\n            }\n          ]\n        }\n      }\n    },\n    { \"assistantId\": \"support-id\" },\n    { \"assistantId\": \"returns-id\" }\n  ]\n}\n```\n\n## Best Practices\n\n1. **Keep assistants focused** — Each assistant should have 1-3 goals maximum\n2. **Minimize squad size** — Split only when there's a clear functional boundary\n3. **Write specific handoff descriptions** — The LLM uses these to decide when to transfer\n4. **Mention handoffs in system prompts** — Tell each assistant what departments exist\n5. **Use member overrides** — Apply consistent voice and transcriber settings across the squad\n\n## Managing Squads\n\n```bash\n# List squads\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fsquad -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Get a squad\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fsquad\u002F{id} -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Update a squad\ncurl -X PATCH https:\u002F\u002Fapi.vapi.ai\u002Fsquad\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"name\": \"Updated Squad Name\",\n    \"members\": [\n      { \"assistantId\": \"first-assistant-id\" },\n      { \"assistantId\": \"second-assistant-id\" }\n    ]\n  }'\n\n# Delete a squad\ncurl -X DELETE https:\u002F\u002Fapi.vapi.ai\u002Fsquad\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n```\n\nThe update API requires the complete `members` array. Retrieve the current squad first and preserve every member when changing its name or overrides.\n\n## References\n\n- [Vapi Squads Docs](https:\u002F\u002Fdocs.vapi.ai\u002Fsquads) — Official documentation\n- [Squad Examples](https:\u002F\u002Fdocs.vapi.ai\u002Fsquads-example) — More patterns\n- [Handoff Configuration](https:\u002F\u002Fdocs.vapi.ai\u002Fsquads\u002Fhandoff) — Detailed handoff guide\n\n## Additional Resources\n\nVapi provides a **documentation MCP server** that gives compatible AI agents access to the Vapi knowledge base. Use its documentation search for advanced configuration, troubleshooting, SDK details, and anything beyond this skill.\n\n**Manual setup:** If your agent doesn't auto-detect the config, run:\n```bash\nclaude mcp add vapi-docs -- npx -y mcp-remote https:\u002F\u002Fdocs.vapi.ai\u002F_mcp\u002Fserver\n```\n\nSee the [Vapi MCP integration guide](https:\u002F\u002Fdocs.vapi.ai\u002Fcli\u002Fmcp) for setup instructions across supported agents.\n",{"data":41,"body":45},{"name":4,"description":6,"license":26,"compatibility":42,"metadata":43},"Requires internet access and a Vapi API key (VAPI_API_KEY).",{"author":8,"version":44},"1.0",{"type":46,"children":47},"root",[48,57,63,95,102,107,167,173,180,704,710,1873,1879,1885,1890,1925,2123,2129,2134,2409,2415,2420,2656,2662,2667,3041,3047,3052,3503,3509,3515,3661,3667,3948,3954,3960,4919,4925,5729,5735,5789,5795,6105,6117,6123,6164,6170,6182,6192,6247,6261],{"type":49,"tag":50,"props":51,"children":53},"element","h1",{"id":52},"vapi-squad-creation",[54],{"type":55,"value":56},"text","Vapi Squad Creation",{"type":49,"tag":58,"props":59,"children":60},"p",{},[61],{"type":55,"value":62},"Create squads that orchestrate multiple specialized assistants with context-preserving handoffs. Break complex workflows into focused assistants that transfer calls between each other.",{"type":49,"tag":64,"props":65,"children":66},"blockquote",{},[67],{"type":49,"tag":58,"props":68,"children":69},{},[70,76,78,85,87,93],{"type":49,"tag":71,"props":72,"children":73},"strong",{},[74],{"type":55,"value":75},"Setup:",{"type":55,"value":77}," Ensure ",{"type":49,"tag":79,"props":80,"children":82},"code",{"className":81},[],[83],{"type":55,"value":84},"VAPI_API_KEY",{"type":55,"value":86}," is set. See the ",{"type":49,"tag":79,"props":88,"children":90},{"className":89},[],[91],{"type":55,"value":92},"setup-api-key",{"type":55,"value":94}," skill if needed.",{"type":49,"tag":96,"props":97,"children":99},"h2",{"id":98},"why-squads",[100],{"type":55,"value":101},"Why Squads?",{"type":49,"tag":58,"props":103,"children":104},{},[105],{"type":55,"value":106},"Single assistants with large prompts cause higher hallucination rates, increased costs, and greater latency. Squads solve this by creating focused assistants with specific roles:",{"type":49,"tag":108,"props":109,"children":110},"ul",{},[111,133,153],{"type":49,"tag":112,"props":113,"children":114},"li",{},[115,120,122,127,128],{"type":49,"tag":71,"props":116,"children":117},{},[118],{"type":55,"value":119},"Triage",{"type":55,"value":121}," → ",{"type":49,"tag":71,"props":123,"children":124},{},[125],{"type":55,"value":126},"Booking",{"type":55,"value":121},{"type":49,"tag":71,"props":129,"children":130},{},[131],{"type":55,"value":132},"Confirmation",{"type":49,"tag":112,"props":134,"children":135},{},[136,141,142,147,148],{"type":49,"tag":71,"props":137,"children":138},{},[139],{"type":55,"value":140},"Sales",{"type":55,"value":121},{"type":49,"tag":71,"props":143,"children":144},{},[145],{"type":55,"value":146},"Technical Support",{"type":55,"value":121},{"type":49,"tag":71,"props":149,"children":150},{},[151],{"type":55,"value":152},"Billing",{"type":49,"tag":112,"props":154,"children":155},{},[156,161,162],{"type":49,"tag":71,"props":157,"children":158},{},[159],{"type":55,"value":160},"Receptionist",{"type":55,"value":121},{"type":49,"tag":71,"props":163,"children":164},{},[165],{"type":55,"value":166},"Department Specialist",{"type":49,"tag":96,"props":168,"children":170},{"id":169},"quick-start",[171],{"type":55,"value":172},"Quick Start",{"type":49,"tag":174,"props":175,"children":177},"h3",{"id":176},"curl",[178],{"type":55,"value":179},"cURL",{"type":49,"tag":181,"props":182,"children":187},"pre",{"className":183,"code":184,"language":185,"meta":186,"style":186},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fsquad \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"name\": \"Support Squad\",\n    \"members\": [\n      {\n        \"assistant\": {\n          \"name\": \"Receptionist\",\n          \"firstMessage\": \"Hello! How can I direct your call today?\",\n          \"model\": {\n            \"provider\": \"openai\",\n            \"model\": \"gpt-4.1\",\n            \"messages\": [\n              {\n                \"role\": \"system\",\n                \"content\": \"You are a receptionist. Determine if the caller needs sales or support, then transfer them to the right department.\"\n              }\n            ],\n            \"tools\": [\n              {\n                \"type\": \"handoff\",\n                \"destinations\": [\n                  {\n                    \"type\": \"assistant\",\n                    \"assistantId\": \"sales-assistant-id\",\n                    \"description\": \"Transfer when the caller asks about pricing, plans, or wants to purchase\"\n                  },\n                  {\n                    \"type\": \"assistant\",\n                    \"assistantId\": \"support-assistant-id\",\n                    \"description\": \"Transfer when the caller has a technical issue or needs help\"\n                  }\n                ]\n              }\n            ]\n          },\n          \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Lily\", \"version\": 2 },\n          \"transcriber\": { \"provider\": \"deepgram\", \"model\": \"nova-3\", \"language\": \"en\" }\n        }\n      },\n      {\n        \"assistantId\": \"sales-assistant-id\"\n      },\n      {\n        \"assistantId\": \"support-assistant-id\"\n      }\n    ]\n  }'\n","bash","",[188],{"type":49,"tag":79,"props":189,"children":190},{"__ignoreMap":186},[191,224,258,283,302,311,320,328,337,346,355,364,373,382,391,400,409,418,427,436,445,453,462,471,480,489,498,507,516,524,532,541,550,559,568,576,585,594,603,612,621,630,638,647,655,663,672,681,690],{"type":49,"tag":192,"props":193,"children":196},"span",{"class":194,"line":195},"line",1,[197,202,208,213,218],{"type":49,"tag":192,"props":198,"children":200},{"style":199},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[201],{"type":55,"value":176},{"type":49,"tag":192,"props":203,"children":205},{"style":204},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[206],{"type":55,"value":207}," -X",{"type":49,"tag":192,"props":209,"children":210},{"style":204},[211],{"type":55,"value":212}," POST",{"type":49,"tag":192,"props":214,"children":215},{"style":204},[216],{"type":55,"value":217}," https:\u002F\u002Fapi.vapi.ai\u002Fsquad",{"type":49,"tag":192,"props":219,"children":221},{"style":220},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[222],{"type":55,"value":223}," \\\n",{"type":49,"tag":192,"props":225,"children":227},{"class":194,"line":226},2,[228,233,239,244,249,254],{"type":49,"tag":192,"props":229,"children":230},{"style":204},[231],{"type":55,"value":232},"  -H",{"type":49,"tag":192,"props":234,"children":236},{"style":235},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[237],{"type":55,"value":238}," \"",{"type":49,"tag":192,"props":240,"children":241},{"style":204},[242],{"type":55,"value":243},"Authorization: Bearer ",{"type":49,"tag":192,"props":245,"children":246},{"style":220},[247],{"type":55,"value":248},"$VAPI_API_KEY",{"type":49,"tag":192,"props":250,"children":251},{"style":235},[252],{"type":55,"value":253},"\"",{"type":49,"tag":192,"props":255,"children":256},{"style":220},[257],{"type":55,"value":223},{"type":49,"tag":192,"props":259,"children":261},{"class":194,"line":260},3,[262,266,270,275,279],{"type":49,"tag":192,"props":263,"children":264},{"style":204},[265],{"type":55,"value":232},{"type":49,"tag":192,"props":267,"children":268},{"style":235},[269],{"type":55,"value":238},{"type":49,"tag":192,"props":271,"children":272},{"style":204},[273],{"type":55,"value":274},"Content-Type: application\u002Fjson",{"type":49,"tag":192,"props":276,"children":277},{"style":235},[278],{"type":55,"value":253},{"type":49,"tag":192,"props":280,"children":281},{"style":220},[282],{"type":55,"value":223},{"type":49,"tag":192,"props":284,"children":286},{"class":194,"line":285},4,[287,292,297],{"type":49,"tag":192,"props":288,"children":289},{"style":204},[290],{"type":55,"value":291},"  -d",{"type":49,"tag":192,"props":293,"children":294},{"style":235},[295],{"type":55,"value":296}," '",{"type":49,"tag":192,"props":298,"children":299},{"style":204},[300],{"type":55,"value":301},"{\n",{"type":49,"tag":192,"props":303,"children":305},{"class":194,"line":304},5,[306],{"type":49,"tag":192,"props":307,"children":308},{"style":204},[309],{"type":55,"value":310},"    \"name\": \"Support Squad\",\n",{"type":49,"tag":192,"props":312,"children":314},{"class":194,"line":313},6,[315],{"type":49,"tag":192,"props":316,"children":317},{"style":204},[318],{"type":55,"value":319},"    \"members\": [\n",{"type":49,"tag":192,"props":321,"children":322},{"class":194,"line":27},[323],{"type":49,"tag":192,"props":324,"children":325},{"style":204},[326],{"type":55,"value":327},"      {\n",{"type":49,"tag":192,"props":329,"children":331},{"class":194,"line":330},8,[332],{"type":49,"tag":192,"props":333,"children":334},{"style":204},[335],{"type":55,"value":336},"        \"assistant\": {\n",{"type":49,"tag":192,"props":338,"children":340},{"class":194,"line":339},9,[341],{"type":49,"tag":192,"props":342,"children":343},{"style":204},[344],{"type":55,"value":345},"          \"name\": \"Receptionist\",\n",{"type":49,"tag":192,"props":347,"children":349},{"class":194,"line":348},10,[350],{"type":49,"tag":192,"props":351,"children":352},{"style":204},[353],{"type":55,"value":354},"          \"firstMessage\": \"Hello! How can I direct your call today?\",\n",{"type":49,"tag":192,"props":356,"children":358},{"class":194,"line":357},11,[359],{"type":49,"tag":192,"props":360,"children":361},{"style":204},[362],{"type":55,"value":363},"          \"model\": {\n",{"type":49,"tag":192,"props":365,"children":367},{"class":194,"line":366},12,[368],{"type":49,"tag":192,"props":369,"children":370},{"style":204},[371],{"type":55,"value":372},"            \"provider\": \"openai\",\n",{"type":49,"tag":192,"props":374,"children":376},{"class":194,"line":375},13,[377],{"type":49,"tag":192,"props":378,"children":379},{"style":204},[380],{"type":55,"value":381},"            \"model\": \"gpt-4.1\",\n",{"type":49,"tag":192,"props":383,"children":385},{"class":194,"line":384},14,[386],{"type":49,"tag":192,"props":387,"children":388},{"style":204},[389],{"type":55,"value":390},"            \"messages\": [\n",{"type":49,"tag":192,"props":392,"children":394},{"class":194,"line":393},15,[395],{"type":49,"tag":192,"props":396,"children":397},{"style":204},[398],{"type":55,"value":399},"              {\n",{"type":49,"tag":192,"props":401,"children":403},{"class":194,"line":402},16,[404],{"type":49,"tag":192,"props":405,"children":406},{"style":204},[407],{"type":55,"value":408},"                \"role\": \"system\",\n",{"type":49,"tag":192,"props":410,"children":412},{"class":194,"line":411},17,[413],{"type":49,"tag":192,"props":414,"children":415},{"style":204},[416],{"type":55,"value":417},"                \"content\": \"You are a receptionist. Determine if the caller needs sales or support, then transfer them to the right department.\"\n",{"type":49,"tag":192,"props":419,"children":421},{"class":194,"line":420},18,[422],{"type":49,"tag":192,"props":423,"children":424},{"style":204},[425],{"type":55,"value":426},"              }\n",{"type":49,"tag":192,"props":428,"children":430},{"class":194,"line":429},19,[431],{"type":49,"tag":192,"props":432,"children":433},{"style":204},[434],{"type":55,"value":435},"            ],\n",{"type":49,"tag":192,"props":437,"children":439},{"class":194,"line":438},20,[440],{"type":49,"tag":192,"props":441,"children":442},{"style":204},[443],{"type":55,"value":444},"            \"tools\": [\n",{"type":49,"tag":192,"props":446,"children":448},{"class":194,"line":447},21,[449],{"type":49,"tag":192,"props":450,"children":451},{"style":204},[452],{"type":55,"value":399},{"type":49,"tag":192,"props":454,"children":456},{"class":194,"line":455},22,[457],{"type":49,"tag":192,"props":458,"children":459},{"style":204},[460],{"type":55,"value":461},"                \"type\": \"handoff\",\n",{"type":49,"tag":192,"props":463,"children":465},{"class":194,"line":464},23,[466],{"type":49,"tag":192,"props":467,"children":468},{"style":204},[469],{"type":55,"value":470},"                \"destinations\": [\n",{"type":49,"tag":192,"props":472,"children":474},{"class":194,"line":473},24,[475],{"type":49,"tag":192,"props":476,"children":477},{"style":204},[478],{"type":55,"value":479},"                  {\n",{"type":49,"tag":192,"props":481,"children":483},{"class":194,"line":482},25,[484],{"type":49,"tag":192,"props":485,"children":486},{"style":204},[487],{"type":55,"value":488},"                    \"type\": \"assistant\",\n",{"type":49,"tag":192,"props":490,"children":492},{"class":194,"line":491},26,[493],{"type":49,"tag":192,"props":494,"children":495},{"style":204},[496],{"type":55,"value":497},"                    \"assistantId\": \"sales-assistant-id\",\n",{"type":49,"tag":192,"props":499,"children":501},{"class":194,"line":500},27,[502],{"type":49,"tag":192,"props":503,"children":504},{"style":204},[505],{"type":55,"value":506},"                    \"description\": \"Transfer when the caller asks about pricing, plans, or wants to purchase\"\n",{"type":49,"tag":192,"props":508,"children":510},{"class":194,"line":509},28,[511],{"type":49,"tag":192,"props":512,"children":513},{"style":204},[514],{"type":55,"value":515},"                  },\n",{"type":49,"tag":192,"props":517,"children":519},{"class":194,"line":518},29,[520],{"type":49,"tag":192,"props":521,"children":522},{"style":204},[523],{"type":55,"value":479},{"type":49,"tag":192,"props":525,"children":527},{"class":194,"line":526},30,[528],{"type":49,"tag":192,"props":529,"children":530},{"style":204},[531],{"type":55,"value":488},{"type":49,"tag":192,"props":533,"children":535},{"class":194,"line":534},31,[536],{"type":49,"tag":192,"props":537,"children":538},{"style":204},[539],{"type":55,"value":540},"                    \"assistantId\": \"support-assistant-id\",\n",{"type":49,"tag":192,"props":542,"children":544},{"class":194,"line":543},32,[545],{"type":49,"tag":192,"props":546,"children":547},{"style":204},[548],{"type":55,"value":549},"                    \"description\": \"Transfer when the caller has a technical issue or needs help\"\n",{"type":49,"tag":192,"props":551,"children":553},{"class":194,"line":552},33,[554],{"type":49,"tag":192,"props":555,"children":556},{"style":204},[557],{"type":55,"value":558},"                  }\n",{"type":49,"tag":192,"props":560,"children":562},{"class":194,"line":561},34,[563],{"type":49,"tag":192,"props":564,"children":565},{"style":204},[566],{"type":55,"value":567},"                ]\n",{"type":49,"tag":192,"props":569,"children":571},{"class":194,"line":570},35,[572],{"type":49,"tag":192,"props":573,"children":574},{"style":204},[575],{"type":55,"value":426},{"type":49,"tag":192,"props":577,"children":579},{"class":194,"line":578},36,[580],{"type":49,"tag":192,"props":581,"children":582},{"style":204},[583],{"type":55,"value":584},"            ]\n",{"type":49,"tag":192,"props":586,"children":588},{"class":194,"line":587},37,[589],{"type":49,"tag":192,"props":590,"children":591},{"style":204},[592],{"type":55,"value":593},"          },\n",{"type":49,"tag":192,"props":595,"children":597},{"class":194,"line":596},38,[598],{"type":49,"tag":192,"props":599,"children":600},{"style":204},[601],{"type":55,"value":602},"          \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Lily\", \"version\": 2 },\n",{"type":49,"tag":192,"props":604,"children":606},{"class":194,"line":605},39,[607],{"type":49,"tag":192,"props":608,"children":609},{"style":204},[610],{"type":55,"value":611},"          \"transcriber\": { \"provider\": \"deepgram\", \"model\": \"nova-3\", \"language\": \"en\" }\n",{"type":49,"tag":192,"props":613,"children":615},{"class":194,"line":614},40,[616],{"type":49,"tag":192,"props":617,"children":618},{"style":204},[619],{"type":55,"value":620},"        }\n",{"type":49,"tag":192,"props":622,"children":624},{"class":194,"line":623},41,[625],{"type":49,"tag":192,"props":626,"children":627},{"style":204},[628],{"type":55,"value":629},"      },\n",{"type":49,"tag":192,"props":631,"children":633},{"class":194,"line":632},42,[634],{"type":49,"tag":192,"props":635,"children":636},{"style":204},[637],{"type":55,"value":327},{"type":49,"tag":192,"props":639,"children":641},{"class":194,"line":640},43,[642],{"type":49,"tag":192,"props":643,"children":644},{"style":204},[645],{"type":55,"value":646},"        \"assistantId\": \"sales-assistant-id\"\n",{"type":49,"tag":192,"props":648,"children":650},{"class":194,"line":649},44,[651],{"type":49,"tag":192,"props":652,"children":653},{"style":204},[654],{"type":55,"value":629},{"type":49,"tag":192,"props":656,"children":658},{"class":194,"line":657},45,[659],{"type":49,"tag":192,"props":660,"children":661},{"style":204},[662],{"type":55,"value":327},{"type":49,"tag":192,"props":664,"children":666},{"class":194,"line":665},46,[667],{"type":49,"tag":192,"props":668,"children":669},{"style":204},[670],{"type":55,"value":671},"        \"assistantId\": \"support-assistant-id\"\n",{"type":49,"tag":192,"props":673,"children":675},{"class":194,"line":674},47,[676],{"type":49,"tag":192,"props":677,"children":678},{"style":204},[679],{"type":55,"value":680},"      }\n",{"type":49,"tag":192,"props":682,"children":684},{"class":194,"line":683},48,[685],{"type":49,"tag":192,"props":686,"children":687},{"style":204},[688],{"type":55,"value":689},"    ]\n",{"type":49,"tag":192,"props":691,"children":693},{"class":194,"line":692},49,[694,699],{"type":49,"tag":192,"props":695,"children":696},{"style":204},[697],{"type":55,"value":698},"  }",{"type":49,"tag":192,"props":700,"children":701},{"style":235},[702],{"type":55,"value":703},"'\n",{"type":49,"tag":174,"props":705,"children":707},{"id":706},"typescript-server-sdk",[708],{"type":55,"value":709},"TypeScript (Server SDK)",{"type":49,"tag":181,"props":711,"children":715},{"className":712,"code":713,"language":714,"meta":186,"style":186},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { VapiClient } from \"@vapi-ai\u002Fserver-sdk\";\n\nconst vapi = new VapiClient({ token: process.env.VAPI_API_KEY! });\n\nconst squad = await vapi.squads.create({\n  name: \"Support Squad\",\n  members: [\n    {\n      assistant: {\n        name: \"Receptionist\",\n        firstMessage: \"Hello! How can I direct your call today?\",\n        model: {\n          provider: \"openai\",\n          model: \"gpt-4.1\",\n          messages: [\n            {\n              role: \"system\",\n              content:\n                \"You are a receptionist. Determine if the caller needs sales or support, then transfer them.\",\n            },\n          ],\n          tools: [\n            {\n              type: \"handoff\",\n              destinations: [\n                {\n                  type: \"assistant\",\n                  assistantId: \"sales-assistant-id\",\n                  description: \"Transfer for pricing and purchasing questions\",\n                },\n                {\n                  type: \"assistant\",\n                  assistantId: \"support-assistant-id\",\n                  description: \"Transfer for technical issues\",\n                },\n              ],\n            },\n          ],\n        },\n        voice: { provider: \"vapi\", voiceId: \"Lily\" },\n        transcriber: { provider: \"deepgram\", model: \"nova-3\", language: \"en\" },\n      },\n    },\n    { assistantId: \"sales-assistant-id\" },\n    { assistantId: \"support-assistant-id\" },\n  ],\n});\n\nconsole.log(\"Squad created:\", squad.id);\n","typescript",[716],{"type":49,"tag":79,"props":717,"children":718},{"__ignoreMap":186},[719,766,775,866,873,925,955,972,980,997,1025,1054,1070,1099,1128,1144,1152,1181,1194,1215,1223,1235,1251,1258,1287,1303,1311,1340,1369,1398,1406,1413,1440,1468,1496,1503,1515,1522,1533,1541,1610,1703,1710,1718,1751,1782,1794,1810,1817],{"type":49,"tag":192,"props":720,"children":721},{"class":194,"line":195},[722,728,733,738,743,748,752,757,761],{"type":49,"tag":192,"props":723,"children":725},{"style":724},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[726],{"type":55,"value":727},"import",{"type":49,"tag":192,"props":729,"children":730},{"style":235},[731],{"type":55,"value":732}," {",{"type":49,"tag":192,"props":734,"children":735},{"style":220},[736],{"type":55,"value":737}," VapiClient",{"type":49,"tag":192,"props":739,"children":740},{"style":235},[741],{"type":55,"value":742}," }",{"type":49,"tag":192,"props":744,"children":745},{"style":724},[746],{"type":55,"value":747}," from",{"type":49,"tag":192,"props":749,"children":750},{"style":235},[751],{"type":55,"value":238},{"type":49,"tag":192,"props":753,"children":754},{"style":204},[755],{"type":55,"value":756},"@vapi-ai\u002Fserver-sdk",{"type":49,"tag":192,"props":758,"children":759},{"style":235},[760],{"type":55,"value":253},{"type":49,"tag":192,"props":762,"children":763},{"style":235},[764],{"type":55,"value":765},";\n",{"type":49,"tag":192,"props":767,"children":768},{"class":194,"line":226},[769],{"type":49,"tag":192,"props":770,"children":772},{"emptyLinePlaceholder":771},true,[773],{"type":55,"value":774},"\n",{"type":49,"tag":192,"props":776,"children":777},{"class":194,"line":260},[778,784,789,794,799,804,809,814,820,825,830,835,840,844,848,853,857,862],{"type":49,"tag":192,"props":779,"children":781},{"style":780},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[782],{"type":55,"value":783},"const",{"type":49,"tag":192,"props":785,"children":786},{"style":220},[787],{"type":55,"value":788}," vapi ",{"type":49,"tag":192,"props":790,"children":791},{"style":235},[792],{"type":55,"value":793},"=",{"type":49,"tag":192,"props":795,"children":796},{"style":235},[797],{"type":55,"value":798}," new",{"type":49,"tag":192,"props":800,"children":802},{"style":801},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[803],{"type":55,"value":737},{"type":49,"tag":192,"props":805,"children":806},{"style":220},[807],{"type":55,"value":808},"(",{"type":49,"tag":192,"props":810,"children":811},{"style":235},[812],{"type":55,"value":813},"{",{"type":49,"tag":192,"props":815,"children":817},{"style":816},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[818],{"type":55,"value":819}," token",{"type":49,"tag":192,"props":821,"children":822},{"style":235},[823],{"type":55,"value":824},":",{"type":49,"tag":192,"props":826,"children":827},{"style":220},[828],{"type":55,"value":829}," process",{"type":49,"tag":192,"props":831,"children":832},{"style":235},[833],{"type":55,"value":834},".",{"type":49,"tag":192,"props":836,"children":837},{"style":220},[838],{"type":55,"value":839},"env",{"type":49,"tag":192,"props":841,"children":842},{"style":235},[843],{"type":55,"value":834},{"type":49,"tag":192,"props":845,"children":846},{"style":220},[847],{"type":55,"value":84},{"type":49,"tag":192,"props":849,"children":850},{"style":235},[851],{"type":55,"value":852},"!",{"type":49,"tag":192,"props":854,"children":855},{"style":235},[856],{"type":55,"value":742},{"type":49,"tag":192,"props":858,"children":859},{"style":220},[860],{"type":55,"value":861},")",{"type":49,"tag":192,"props":863,"children":864},{"style":235},[865],{"type":55,"value":765},{"type":49,"tag":192,"props":867,"children":868},{"class":194,"line":285},[869],{"type":49,"tag":192,"props":870,"children":871},{"emptyLinePlaceholder":771},[872],{"type":55,"value":774},{"type":49,"tag":192,"props":874,"children":875},{"class":194,"line":304},[876,880,885,889,894,899,903,908,912,917,921],{"type":49,"tag":192,"props":877,"children":878},{"style":780},[879],{"type":55,"value":783},{"type":49,"tag":192,"props":881,"children":882},{"style":220},[883],{"type":55,"value":884}," squad ",{"type":49,"tag":192,"props":886,"children":887},{"style":235},[888],{"type":55,"value":793},{"type":49,"tag":192,"props":890,"children":891},{"style":724},[892],{"type":55,"value":893}," await",{"type":49,"tag":192,"props":895,"children":896},{"style":220},[897],{"type":55,"value":898}," vapi",{"type":49,"tag":192,"props":900,"children":901},{"style":235},[902],{"type":55,"value":834},{"type":49,"tag":192,"props":904,"children":905},{"style":220},[906],{"type":55,"value":907},"squads",{"type":49,"tag":192,"props":909,"children":910},{"style":235},[911],{"type":55,"value":834},{"type":49,"tag":192,"props":913,"children":914},{"style":801},[915],{"type":55,"value":916},"create",{"type":49,"tag":192,"props":918,"children":919},{"style":220},[920],{"type":55,"value":808},{"type":49,"tag":192,"props":922,"children":923},{"style":235},[924],{"type":55,"value":301},{"type":49,"tag":192,"props":926,"children":927},{"class":194,"line":313},[928,933,937,941,946,950],{"type":49,"tag":192,"props":929,"children":930},{"style":816},[931],{"type":55,"value":932},"  name",{"type":49,"tag":192,"props":934,"children":935},{"style":235},[936],{"type":55,"value":824},{"type":49,"tag":192,"props":938,"children":939},{"style":235},[940],{"type":55,"value":238},{"type":49,"tag":192,"props":942,"children":943},{"style":204},[944],{"type":55,"value":945},"Support Squad",{"type":49,"tag":192,"props":947,"children":948},{"style":235},[949],{"type":55,"value":253},{"type":49,"tag":192,"props":951,"children":952},{"style":235},[953],{"type":55,"value":954},",\n",{"type":49,"tag":192,"props":956,"children":957},{"class":194,"line":27},[958,963,967],{"type":49,"tag":192,"props":959,"children":960},{"style":816},[961],{"type":55,"value":962},"  members",{"type":49,"tag":192,"props":964,"children":965},{"style":235},[966],{"type":55,"value":824},{"type":49,"tag":192,"props":968,"children":969},{"style":220},[970],{"type":55,"value":971}," [\n",{"type":49,"tag":192,"props":973,"children":974},{"class":194,"line":330},[975],{"type":49,"tag":192,"props":976,"children":977},{"style":235},[978],{"type":55,"value":979},"    {\n",{"type":49,"tag":192,"props":981,"children":982},{"class":194,"line":339},[983,988,992],{"type":49,"tag":192,"props":984,"children":985},{"style":816},[986],{"type":55,"value":987},"      assistant",{"type":49,"tag":192,"props":989,"children":990},{"style":235},[991],{"type":55,"value":824},{"type":49,"tag":192,"props":993,"children":994},{"style":235},[995],{"type":55,"value":996}," {\n",{"type":49,"tag":192,"props":998,"children":999},{"class":194,"line":348},[1000,1005,1009,1013,1017,1021],{"type":49,"tag":192,"props":1001,"children":1002},{"style":816},[1003],{"type":55,"value":1004},"        name",{"type":49,"tag":192,"props":1006,"children":1007},{"style":235},[1008],{"type":55,"value":824},{"type":49,"tag":192,"props":1010,"children":1011},{"style":235},[1012],{"type":55,"value":238},{"type":49,"tag":192,"props":1014,"children":1015},{"style":204},[1016],{"type":55,"value":160},{"type":49,"tag":192,"props":1018,"children":1019},{"style":235},[1020],{"type":55,"value":253},{"type":49,"tag":192,"props":1022,"children":1023},{"style":235},[1024],{"type":55,"value":954},{"type":49,"tag":192,"props":1026,"children":1027},{"class":194,"line":357},[1028,1033,1037,1041,1046,1050],{"type":49,"tag":192,"props":1029,"children":1030},{"style":816},[1031],{"type":55,"value":1032},"        firstMessage",{"type":49,"tag":192,"props":1034,"children":1035},{"style":235},[1036],{"type":55,"value":824},{"type":49,"tag":192,"props":1038,"children":1039},{"style":235},[1040],{"type":55,"value":238},{"type":49,"tag":192,"props":1042,"children":1043},{"style":204},[1044],{"type":55,"value":1045},"Hello! How can I direct your call today?",{"type":49,"tag":192,"props":1047,"children":1048},{"style":235},[1049],{"type":55,"value":253},{"type":49,"tag":192,"props":1051,"children":1052},{"style":235},[1053],{"type":55,"value":954},{"type":49,"tag":192,"props":1055,"children":1056},{"class":194,"line":366},[1057,1062,1066],{"type":49,"tag":192,"props":1058,"children":1059},{"style":816},[1060],{"type":55,"value":1061},"        model",{"type":49,"tag":192,"props":1063,"children":1064},{"style":235},[1065],{"type":55,"value":824},{"type":49,"tag":192,"props":1067,"children":1068},{"style":235},[1069],{"type":55,"value":996},{"type":49,"tag":192,"props":1071,"children":1072},{"class":194,"line":375},[1073,1078,1082,1086,1091,1095],{"type":49,"tag":192,"props":1074,"children":1075},{"style":816},[1076],{"type":55,"value":1077},"          provider",{"type":49,"tag":192,"props":1079,"children":1080},{"style":235},[1081],{"type":55,"value":824},{"type":49,"tag":192,"props":1083,"children":1084},{"style":235},[1085],{"type":55,"value":238},{"type":49,"tag":192,"props":1087,"children":1088},{"style":204},[1089],{"type":55,"value":1090},"openai",{"type":49,"tag":192,"props":1092,"children":1093},{"style":235},[1094],{"type":55,"value":253},{"type":49,"tag":192,"props":1096,"children":1097},{"style":235},[1098],{"type":55,"value":954},{"type":49,"tag":192,"props":1100,"children":1101},{"class":194,"line":384},[1102,1107,1111,1115,1120,1124],{"type":49,"tag":192,"props":1103,"children":1104},{"style":816},[1105],{"type":55,"value":1106},"          model",{"type":49,"tag":192,"props":1108,"children":1109},{"style":235},[1110],{"type":55,"value":824},{"type":49,"tag":192,"props":1112,"children":1113},{"style":235},[1114],{"type":55,"value":238},{"type":49,"tag":192,"props":1116,"children":1117},{"style":204},[1118],{"type":55,"value":1119},"gpt-4.1",{"type":49,"tag":192,"props":1121,"children":1122},{"style":235},[1123],{"type":55,"value":253},{"type":49,"tag":192,"props":1125,"children":1126},{"style":235},[1127],{"type":55,"value":954},{"type":49,"tag":192,"props":1129,"children":1130},{"class":194,"line":393},[1131,1136,1140],{"type":49,"tag":192,"props":1132,"children":1133},{"style":816},[1134],{"type":55,"value":1135},"          messages",{"type":49,"tag":192,"props":1137,"children":1138},{"style":235},[1139],{"type":55,"value":824},{"type":49,"tag":192,"props":1141,"children":1142},{"style":220},[1143],{"type":55,"value":971},{"type":49,"tag":192,"props":1145,"children":1146},{"class":194,"line":402},[1147],{"type":49,"tag":192,"props":1148,"children":1149},{"style":235},[1150],{"type":55,"value":1151},"            {\n",{"type":49,"tag":192,"props":1153,"children":1154},{"class":194,"line":411},[1155,1160,1164,1168,1173,1177],{"type":49,"tag":192,"props":1156,"children":1157},{"style":816},[1158],{"type":55,"value":1159},"              role",{"type":49,"tag":192,"props":1161,"children":1162},{"style":235},[1163],{"type":55,"value":824},{"type":49,"tag":192,"props":1165,"children":1166},{"style":235},[1167],{"type":55,"value":238},{"type":49,"tag":192,"props":1169,"children":1170},{"style":204},[1171],{"type":55,"value":1172},"system",{"type":49,"tag":192,"props":1174,"children":1175},{"style":235},[1176],{"type":55,"value":253},{"type":49,"tag":192,"props":1178,"children":1179},{"style":235},[1180],{"type":55,"value":954},{"type":49,"tag":192,"props":1182,"children":1183},{"class":194,"line":420},[1184,1189],{"type":49,"tag":192,"props":1185,"children":1186},{"style":816},[1187],{"type":55,"value":1188},"              content",{"type":49,"tag":192,"props":1190,"children":1191},{"style":235},[1192],{"type":55,"value":1193},":\n",{"type":49,"tag":192,"props":1195,"children":1196},{"class":194,"line":429},[1197,1202,1207,1211],{"type":49,"tag":192,"props":1198,"children":1199},{"style":235},[1200],{"type":55,"value":1201},"                \"",{"type":49,"tag":192,"props":1203,"children":1204},{"style":204},[1205],{"type":55,"value":1206},"You are a receptionist. Determine if the caller needs sales or support, then transfer them.",{"type":49,"tag":192,"props":1208,"children":1209},{"style":235},[1210],{"type":55,"value":253},{"type":49,"tag":192,"props":1212,"children":1213},{"style":235},[1214],{"type":55,"value":954},{"type":49,"tag":192,"props":1216,"children":1217},{"class":194,"line":438},[1218],{"type":49,"tag":192,"props":1219,"children":1220},{"style":235},[1221],{"type":55,"value":1222},"            },\n",{"type":49,"tag":192,"props":1224,"children":1225},{"class":194,"line":447},[1226,1231],{"type":49,"tag":192,"props":1227,"children":1228},{"style":220},[1229],{"type":55,"value":1230},"          ]",{"type":49,"tag":192,"props":1232,"children":1233},{"style":235},[1234],{"type":55,"value":954},{"type":49,"tag":192,"props":1236,"children":1237},{"class":194,"line":455},[1238,1243,1247],{"type":49,"tag":192,"props":1239,"children":1240},{"style":816},[1241],{"type":55,"value":1242},"          tools",{"type":49,"tag":192,"props":1244,"children":1245},{"style":235},[1246],{"type":55,"value":824},{"type":49,"tag":192,"props":1248,"children":1249},{"style":220},[1250],{"type":55,"value":971},{"type":49,"tag":192,"props":1252,"children":1253},{"class":194,"line":464},[1254],{"type":49,"tag":192,"props":1255,"children":1256},{"style":235},[1257],{"type":55,"value":1151},{"type":49,"tag":192,"props":1259,"children":1260},{"class":194,"line":473},[1261,1266,1270,1274,1279,1283],{"type":49,"tag":192,"props":1262,"children":1263},{"style":816},[1264],{"type":55,"value":1265},"              type",{"type":49,"tag":192,"props":1267,"children":1268},{"style":235},[1269],{"type":55,"value":824},{"type":49,"tag":192,"props":1271,"children":1272},{"style":235},[1273],{"type":55,"value":238},{"type":49,"tag":192,"props":1275,"children":1276},{"style":204},[1277],{"type":55,"value":1278},"handoff",{"type":49,"tag":192,"props":1280,"children":1281},{"style":235},[1282],{"type":55,"value":253},{"type":49,"tag":192,"props":1284,"children":1285},{"style":235},[1286],{"type":55,"value":954},{"type":49,"tag":192,"props":1288,"children":1289},{"class":194,"line":482},[1290,1295,1299],{"type":49,"tag":192,"props":1291,"children":1292},{"style":816},[1293],{"type":55,"value":1294},"              destinations",{"type":49,"tag":192,"props":1296,"children":1297},{"style":235},[1298],{"type":55,"value":824},{"type":49,"tag":192,"props":1300,"children":1301},{"style":220},[1302],{"type":55,"value":971},{"type":49,"tag":192,"props":1304,"children":1305},{"class":194,"line":491},[1306],{"type":49,"tag":192,"props":1307,"children":1308},{"style":235},[1309],{"type":55,"value":1310},"                {\n",{"type":49,"tag":192,"props":1312,"children":1313},{"class":194,"line":500},[1314,1319,1323,1327,1332,1336],{"type":49,"tag":192,"props":1315,"children":1316},{"style":816},[1317],{"type":55,"value":1318},"                  type",{"type":49,"tag":192,"props":1320,"children":1321},{"style":235},[1322],{"type":55,"value":824},{"type":49,"tag":192,"props":1324,"children":1325},{"style":235},[1326],{"type":55,"value":238},{"type":49,"tag":192,"props":1328,"children":1329},{"style":204},[1330],{"type":55,"value":1331},"assistant",{"type":49,"tag":192,"props":1333,"children":1334},{"style":235},[1335],{"type":55,"value":253},{"type":49,"tag":192,"props":1337,"children":1338},{"style":235},[1339],{"type":55,"value":954},{"type":49,"tag":192,"props":1341,"children":1342},{"class":194,"line":509},[1343,1348,1352,1356,1361,1365],{"type":49,"tag":192,"props":1344,"children":1345},{"style":816},[1346],{"type":55,"value":1347},"                  assistantId",{"type":49,"tag":192,"props":1349,"children":1350},{"style":235},[1351],{"type":55,"value":824},{"type":49,"tag":192,"props":1353,"children":1354},{"style":235},[1355],{"type":55,"value":238},{"type":49,"tag":192,"props":1357,"children":1358},{"style":204},[1359],{"type":55,"value":1360},"sales-assistant-id",{"type":49,"tag":192,"props":1362,"children":1363},{"style":235},[1364],{"type":55,"value":253},{"type":49,"tag":192,"props":1366,"children":1367},{"style":235},[1368],{"type":55,"value":954},{"type":49,"tag":192,"props":1370,"children":1371},{"class":194,"line":518},[1372,1377,1381,1385,1390,1394],{"type":49,"tag":192,"props":1373,"children":1374},{"style":816},[1375],{"type":55,"value":1376},"                  description",{"type":49,"tag":192,"props":1378,"children":1379},{"style":235},[1380],{"type":55,"value":824},{"type":49,"tag":192,"props":1382,"children":1383},{"style":235},[1384],{"type":55,"value":238},{"type":49,"tag":192,"props":1386,"children":1387},{"style":204},[1388],{"type":55,"value":1389},"Transfer for pricing and purchasing questions",{"type":49,"tag":192,"props":1391,"children":1392},{"style":235},[1393],{"type":55,"value":253},{"type":49,"tag":192,"props":1395,"children":1396},{"style":235},[1397],{"type":55,"value":954},{"type":49,"tag":192,"props":1399,"children":1400},{"class":194,"line":526},[1401],{"type":49,"tag":192,"props":1402,"children":1403},{"style":235},[1404],{"type":55,"value":1405},"                },\n",{"type":49,"tag":192,"props":1407,"children":1408},{"class":194,"line":534},[1409],{"type":49,"tag":192,"props":1410,"children":1411},{"style":235},[1412],{"type":55,"value":1310},{"type":49,"tag":192,"props":1414,"children":1415},{"class":194,"line":543},[1416,1420,1424,1428,1432,1436],{"type":49,"tag":192,"props":1417,"children":1418},{"style":816},[1419],{"type":55,"value":1318},{"type":49,"tag":192,"props":1421,"children":1422},{"style":235},[1423],{"type":55,"value":824},{"type":49,"tag":192,"props":1425,"children":1426},{"style":235},[1427],{"type":55,"value":238},{"type":49,"tag":192,"props":1429,"children":1430},{"style":204},[1431],{"type":55,"value":1331},{"type":49,"tag":192,"props":1433,"children":1434},{"style":235},[1435],{"type":55,"value":253},{"type":49,"tag":192,"props":1437,"children":1438},{"style":235},[1439],{"type":55,"value":954},{"type":49,"tag":192,"props":1441,"children":1442},{"class":194,"line":552},[1443,1447,1451,1455,1460,1464],{"type":49,"tag":192,"props":1444,"children":1445},{"style":816},[1446],{"type":55,"value":1347},{"type":49,"tag":192,"props":1448,"children":1449},{"style":235},[1450],{"type":55,"value":824},{"type":49,"tag":192,"props":1452,"children":1453},{"style":235},[1454],{"type":55,"value":238},{"type":49,"tag":192,"props":1456,"children":1457},{"style":204},[1458],{"type":55,"value":1459},"support-assistant-id",{"type":49,"tag":192,"props":1461,"children":1462},{"style":235},[1463],{"type":55,"value":253},{"type":49,"tag":192,"props":1465,"children":1466},{"style":235},[1467],{"type":55,"value":954},{"type":49,"tag":192,"props":1469,"children":1470},{"class":194,"line":561},[1471,1475,1479,1483,1488,1492],{"type":49,"tag":192,"props":1472,"children":1473},{"style":816},[1474],{"type":55,"value":1376},{"type":49,"tag":192,"props":1476,"children":1477},{"style":235},[1478],{"type":55,"value":824},{"type":49,"tag":192,"props":1480,"children":1481},{"style":235},[1482],{"type":55,"value":238},{"type":49,"tag":192,"props":1484,"children":1485},{"style":204},[1486],{"type":55,"value":1487},"Transfer for technical issues",{"type":49,"tag":192,"props":1489,"children":1490},{"style":235},[1491],{"type":55,"value":253},{"type":49,"tag":192,"props":1493,"children":1494},{"style":235},[1495],{"type":55,"value":954},{"type":49,"tag":192,"props":1497,"children":1498},{"class":194,"line":570},[1499],{"type":49,"tag":192,"props":1500,"children":1501},{"style":235},[1502],{"type":55,"value":1405},{"type":49,"tag":192,"props":1504,"children":1505},{"class":194,"line":578},[1506,1511],{"type":49,"tag":192,"props":1507,"children":1508},{"style":220},[1509],{"type":55,"value":1510},"              ]",{"type":49,"tag":192,"props":1512,"children":1513},{"style":235},[1514],{"type":55,"value":954},{"type":49,"tag":192,"props":1516,"children":1517},{"class":194,"line":587},[1518],{"type":49,"tag":192,"props":1519,"children":1520},{"style":235},[1521],{"type":55,"value":1222},{"type":49,"tag":192,"props":1523,"children":1524},{"class":194,"line":596},[1525,1529],{"type":49,"tag":192,"props":1526,"children":1527},{"style":220},[1528],{"type":55,"value":1230},{"type":49,"tag":192,"props":1530,"children":1531},{"style":235},[1532],{"type":55,"value":954},{"type":49,"tag":192,"props":1534,"children":1535},{"class":194,"line":605},[1536],{"type":49,"tag":192,"props":1537,"children":1538},{"style":235},[1539],{"type":55,"value":1540},"        },\n",{"type":49,"tag":192,"props":1542,"children":1543},{"class":194,"line":614},[1544,1549,1553,1557,1562,1566,1570,1574,1578,1583,1588,1592,1596,1601,1605],{"type":49,"tag":192,"props":1545,"children":1546},{"style":816},[1547],{"type":55,"value":1548},"        voice",{"type":49,"tag":192,"props":1550,"children":1551},{"style":235},[1552],{"type":55,"value":824},{"type":49,"tag":192,"props":1554,"children":1555},{"style":235},[1556],{"type":55,"value":732},{"type":49,"tag":192,"props":1558,"children":1559},{"style":816},[1560],{"type":55,"value":1561}," provider",{"type":49,"tag":192,"props":1563,"children":1564},{"style":235},[1565],{"type":55,"value":824},{"type":49,"tag":192,"props":1567,"children":1568},{"style":235},[1569],{"type":55,"value":238},{"type":49,"tag":192,"props":1571,"children":1572},{"style":204},[1573],{"type":55,"value":8},{"type":49,"tag":192,"props":1575,"children":1576},{"style":235},[1577],{"type":55,"value":253},{"type":49,"tag":192,"props":1579,"children":1580},{"style":235},[1581],{"type":55,"value":1582},",",{"type":49,"tag":192,"props":1584,"children":1585},{"style":816},[1586],{"type":55,"value":1587}," voiceId",{"type":49,"tag":192,"props":1589,"children":1590},{"style":235},[1591],{"type":55,"value":824},{"type":49,"tag":192,"props":1593,"children":1594},{"style":235},[1595],{"type":55,"value":238},{"type":49,"tag":192,"props":1597,"children":1598},{"style":204},[1599],{"type":55,"value":1600},"Lily",{"type":49,"tag":192,"props":1602,"children":1603},{"style":235},[1604],{"type":55,"value":253},{"type":49,"tag":192,"props":1606,"children":1607},{"style":235},[1608],{"type":55,"value":1609}," },\n",{"type":49,"tag":192,"props":1611,"children":1612},{"class":194,"line":623},[1613,1618,1622,1626,1630,1634,1638,1643,1647,1651,1656,1660,1664,1669,1673,1677,1682,1686,1690,1695,1699],{"type":49,"tag":192,"props":1614,"children":1615},{"style":816},[1616],{"type":55,"value":1617},"        transcriber",{"type":49,"tag":192,"props":1619,"children":1620},{"style":235},[1621],{"type":55,"value":824},{"type":49,"tag":192,"props":1623,"children":1624},{"style":235},[1625],{"type":55,"value":732},{"type":49,"tag":192,"props":1627,"children":1628},{"style":816},[1629],{"type":55,"value":1561},{"type":49,"tag":192,"props":1631,"children":1632},{"style":235},[1633],{"type":55,"value":824},{"type":49,"tag":192,"props":1635,"children":1636},{"style":235},[1637],{"type":55,"value":238},{"type":49,"tag":192,"props":1639,"children":1640},{"style":204},[1641],{"type":55,"value":1642},"deepgram",{"type":49,"tag":192,"props":1644,"children":1645},{"style":235},[1646],{"type":55,"value":253},{"type":49,"tag":192,"props":1648,"children":1649},{"style":235},[1650],{"type":55,"value":1582},{"type":49,"tag":192,"props":1652,"children":1653},{"style":816},[1654],{"type":55,"value":1655}," model",{"type":49,"tag":192,"props":1657,"children":1658},{"style":235},[1659],{"type":55,"value":824},{"type":49,"tag":192,"props":1661,"children":1662},{"style":235},[1663],{"type":55,"value":238},{"type":49,"tag":192,"props":1665,"children":1666},{"style":204},[1667],{"type":55,"value":1668},"nova-3",{"type":49,"tag":192,"props":1670,"children":1671},{"style":235},[1672],{"type":55,"value":253},{"type":49,"tag":192,"props":1674,"children":1675},{"style":235},[1676],{"type":55,"value":1582},{"type":49,"tag":192,"props":1678,"children":1679},{"style":816},[1680],{"type":55,"value":1681}," language",{"type":49,"tag":192,"props":1683,"children":1684},{"style":235},[1685],{"type":55,"value":824},{"type":49,"tag":192,"props":1687,"children":1688},{"style":235},[1689],{"type":55,"value":238},{"type":49,"tag":192,"props":1691,"children":1692},{"style":204},[1693],{"type":55,"value":1694},"en",{"type":49,"tag":192,"props":1696,"children":1697},{"style":235},[1698],{"type":55,"value":253},{"type":49,"tag":192,"props":1700,"children":1701},{"style":235},[1702],{"type":55,"value":1609},{"type":49,"tag":192,"props":1704,"children":1705},{"class":194,"line":632},[1706],{"type":49,"tag":192,"props":1707,"children":1708},{"style":235},[1709],{"type":55,"value":629},{"type":49,"tag":192,"props":1711,"children":1712},{"class":194,"line":640},[1713],{"type":49,"tag":192,"props":1714,"children":1715},{"style":235},[1716],{"type":55,"value":1717},"    },\n",{"type":49,"tag":192,"props":1719,"children":1720},{"class":194,"line":649},[1721,1726,1731,1735,1739,1743,1747],{"type":49,"tag":192,"props":1722,"children":1723},{"style":235},[1724],{"type":55,"value":1725},"    {",{"type":49,"tag":192,"props":1727,"children":1728},{"style":816},[1729],{"type":55,"value":1730}," assistantId",{"type":49,"tag":192,"props":1732,"children":1733},{"style":235},[1734],{"type":55,"value":824},{"type":49,"tag":192,"props":1736,"children":1737},{"style":235},[1738],{"type":55,"value":238},{"type":49,"tag":192,"props":1740,"children":1741},{"style":204},[1742],{"type":55,"value":1360},{"type":49,"tag":192,"props":1744,"children":1745},{"style":235},[1746],{"type":55,"value":253},{"type":49,"tag":192,"props":1748,"children":1749},{"style":235},[1750],{"type":55,"value":1609},{"type":49,"tag":192,"props":1752,"children":1753},{"class":194,"line":657},[1754,1758,1762,1766,1770,1774,1778],{"type":49,"tag":192,"props":1755,"children":1756},{"style":235},[1757],{"type":55,"value":1725},{"type":49,"tag":192,"props":1759,"children":1760},{"style":816},[1761],{"type":55,"value":1730},{"type":49,"tag":192,"props":1763,"children":1764},{"style":235},[1765],{"type":55,"value":824},{"type":49,"tag":192,"props":1767,"children":1768},{"style":235},[1769],{"type":55,"value":238},{"type":49,"tag":192,"props":1771,"children":1772},{"style":204},[1773],{"type":55,"value":1459},{"type":49,"tag":192,"props":1775,"children":1776},{"style":235},[1777],{"type":55,"value":253},{"type":49,"tag":192,"props":1779,"children":1780},{"style":235},[1781],{"type":55,"value":1609},{"type":49,"tag":192,"props":1783,"children":1784},{"class":194,"line":665},[1785,1790],{"type":49,"tag":192,"props":1786,"children":1787},{"style":220},[1788],{"type":55,"value":1789},"  ]",{"type":49,"tag":192,"props":1791,"children":1792},{"style":235},[1793],{"type":55,"value":954},{"type":49,"tag":192,"props":1795,"children":1796},{"class":194,"line":674},[1797,1802,1806],{"type":49,"tag":192,"props":1798,"children":1799},{"style":235},[1800],{"type":55,"value":1801},"}",{"type":49,"tag":192,"props":1803,"children":1804},{"style":220},[1805],{"type":55,"value":861},{"type":49,"tag":192,"props":1807,"children":1808},{"style":235},[1809],{"type":55,"value":765},{"type":49,"tag":192,"props":1811,"children":1812},{"class":194,"line":683},[1813],{"type":49,"tag":192,"props":1814,"children":1815},{"emptyLinePlaceholder":771},[1816],{"type":55,"value":774},{"type":49,"tag":192,"props":1818,"children":1819},{"class":194,"line":692},[1820,1825,1829,1834,1838,1842,1847,1851,1855,1860,1864,1869],{"type":49,"tag":192,"props":1821,"children":1822},{"style":220},[1823],{"type":55,"value":1824},"console",{"type":49,"tag":192,"props":1826,"children":1827},{"style":235},[1828],{"type":55,"value":834},{"type":49,"tag":192,"props":1830,"children":1831},{"style":801},[1832],{"type":55,"value":1833},"log",{"type":49,"tag":192,"props":1835,"children":1836},{"style":220},[1837],{"type":55,"value":808},{"type":49,"tag":192,"props":1839,"children":1840},{"style":235},[1841],{"type":55,"value":253},{"type":49,"tag":192,"props":1843,"children":1844},{"style":204},[1845],{"type":55,"value":1846},"Squad created:",{"type":49,"tag":192,"props":1848,"children":1849},{"style":235},[1850],{"type":55,"value":253},{"type":49,"tag":192,"props":1852,"children":1853},{"style":235},[1854],{"type":55,"value":1582},{"type":49,"tag":192,"props":1856,"children":1857},{"style":220},[1858],{"type":55,"value":1859}," squad",{"type":49,"tag":192,"props":1861,"children":1862},{"style":235},[1863],{"type":55,"value":834},{"type":49,"tag":192,"props":1865,"children":1866},{"style":220},[1867],{"type":55,"value":1868},"id)",{"type":49,"tag":192,"props":1870,"children":1871},{"style":235},[1872],{"type":55,"value":765},{"type":49,"tag":96,"props":1874,"children":1876},{"id":1875},"squad-structure",[1877],{"type":55,"value":1878},"Squad Structure",{"type":49,"tag":174,"props":1880,"children":1882},{"id":1881},"members",[1883],{"type":55,"value":1884},"Members",{"type":49,"tag":58,"props":1886,"children":1887},{},[1888],{"type":55,"value":1889},"The first member in the array starts the call. Each member is either:",{"type":49,"tag":108,"props":1891,"children":1892},{},[1893,1909],{"type":49,"tag":112,"props":1894,"children":1895},{},[1896,1901,1903],{"type":49,"tag":71,"props":1897,"children":1898},{},[1899],{"type":55,"value":1900},"Transient",{"type":55,"value":1902}," — Defined inline with ",{"type":49,"tag":79,"props":1904,"children":1906},{"className":1905},[],[1907],{"type":55,"value":1908},"assistant: { ... }",{"type":49,"tag":112,"props":1910,"children":1911},{},[1912,1917,1919],{"type":49,"tag":71,"props":1913,"children":1914},{},[1915],{"type":55,"value":1916},"Persistent",{"type":55,"value":1918}," — References a saved assistant via ",{"type":49,"tag":79,"props":1920,"children":1922},{"className":1921},[],[1923],{"type":55,"value":1924},"assistantId: \"...\"",{"type":49,"tag":181,"props":1926,"children":1930},{"className":1927,"code":1928,"language":1929,"meta":186,"style":186},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"members\": [\n    { \"assistant\": { \"name\": \"Inline Assistant\", \"...\" : \"...\" } },\n    { \"assistantId\": \"saved-assistant-id\" }\n  ]\n}\n","json",[1931],{"type":49,"tag":79,"props":1932,"children":1933},{"__ignoreMap":186},[1934,1941,1965,2065,2107,2115],{"type":49,"tag":192,"props":1935,"children":1936},{"class":194,"line":195},[1937],{"type":49,"tag":192,"props":1938,"children":1939},{"style":235},[1940],{"type":55,"value":301},{"type":49,"tag":192,"props":1942,"children":1943},{"class":194,"line":226},[1944,1949,1953,1957,1961],{"type":49,"tag":192,"props":1945,"children":1946},{"style":235},[1947],{"type":55,"value":1948},"  \"",{"type":49,"tag":192,"props":1950,"children":1951},{"style":780},[1952],{"type":55,"value":1881},{"type":49,"tag":192,"props":1954,"children":1955},{"style":235},[1956],{"type":55,"value":253},{"type":49,"tag":192,"props":1958,"children":1959},{"style":235},[1960],{"type":55,"value":824},{"type":49,"tag":192,"props":1962,"children":1963},{"style":235},[1964],{"type":55,"value":971},{"type":49,"tag":192,"props":1966,"children":1967},{"class":194,"line":260},[1968,1972,1976,1980,1984,1988,1992,1996,2002,2006,2010,2014,2019,2023,2027,2031,2036,2040,2045,2049,2053,2057,2061],{"type":49,"tag":192,"props":1969,"children":1970},{"style":235},[1971],{"type":55,"value":1725},{"type":49,"tag":192,"props":1973,"children":1974},{"style":235},[1975],{"type":55,"value":238},{"type":49,"tag":192,"props":1977,"children":1978},{"style":199},[1979],{"type":55,"value":1331},{"type":49,"tag":192,"props":1981,"children":1982},{"style":235},[1983],{"type":55,"value":253},{"type":49,"tag":192,"props":1985,"children":1986},{"style":235},[1987],{"type":55,"value":824},{"type":49,"tag":192,"props":1989,"children":1990},{"style":235},[1991],{"type":55,"value":732},{"type":49,"tag":192,"props":1993,"children":1994},{"style":235},[1995],{"type":55,"value":238},{"type":49,"tag":192,"props":1997,"children":1999},{"style":1998},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[2000],{"type":55,"value":2001},"name",{"type":49,"tag":192,"props":2003,"children":2004},{"style":235},[2005],{"type":55,"value":253},{"type":49,"tag":192,"props":2007,"children":2008},{"style":235},[2009],{"type":55,"value":824},{"type":49,"tag":192,"props":2011,"children":2012},{"style":235},[2013],{"type":55,"value":238},{"type":49,"tag":192,"props":2015,"children":2016},{"style":204},[2017],{"type":55,"value":2018},"Inline Assistant",{"type":49,"tag":192,"props":2020,"children":2021},{"style":235},[2022],{"type":55,"value":253},{"type":49,"tag":192,"props":2024,"children":2025},{"style":235},[2026],{"type":55,"value":1582},{"type":49,"tag":192,"props":2028,"children":2029},{"style":235},[2030],{"type":55,"value":238},{"type":49,"tag":192,"props":2032,"children":2033},{"style":1998},[2034],{"type":55,"value":2035},"...",{"type":49,"tag":192,"props":2037,"children":2038},{"style":235},[2039],{"type":55,"value":253},{"type":49,"tag":192,"props":2041,"children":2042},{"style":235},[2043],{"type":55,"value":2044}," :",{"type":49,"tag":192,"props":2046,"children":2047},{"style":235},[2048],{"type":55,"value":238},{"type":49,"tag":192,"props":2050,"children":2051},{"style":204},[2052],{"type":55,"value":2035},{"type":49,"tag":192,"props":2054,"children":2055},{"style":235},[2056],{"type":55,"value":253},{"type":49,"tag":192,"props":2058,"children":2059},{"style":235},[2060],{"type":55,"value":742},{"type":49,"tag":192,"props":2062,"children":2063},{"style":235},[2064],{"type":55,"value":1609},{"type":49,"tag":192,"props":2066,"children":2067},{"class":194,"line":285},[2068,2072,2076,2081,2085,2089,2093,2098,2102],{"type":49,"tag":192,"props":2069,"children":2070},{"style":235},[2071],{"type":55,"value":1725},{"type":49,"tag":192,"props":2073,"children":2074},{"style":235},[2075],{"type":55,"value":238},{"type":49,"tag":192,"props":2077,"children":2078},{"style":199},[2079],{"type":55,"value":2080},"assistantId",{"type":49,"tag":192,"props":2082,"children":2083},{"style":235},[2084],{"type":55,"value":253},{"type":49,"tag":192,"props":2086,"children":2087},{"style":235},[2088],{"type":55,"value":824},{"type":49,"tag":192,"props":2090,"children":2091},{"style":235},[2092],{"type":55,"value":238},{"type":49,"tag":192,"props":2094,"children":2095},{"style":204},[2096],{"type":55,"value":2097},"saved-assistant-id",{"type":49,"tag":192,"props":2099,"children":2100},{"style":235},[2101],{"type":55,"value":253},{"type":49,"tag":192,"props":2103,"children":2104},{"style":235},[2105],{"type":55,"value":2106}," }\n",{"type":49,"tag":192,"props":2108,"children":2109},{"class":194,"line":304},[2110],{"type":49,"tag":192,"props":2111,"children":2112},{"style":235},[2113],{"type":55,"value":2114},"  ]\n",{"type":49,"tag":192,"props":2116,"children":2117},{"class":194,"line":313},[2118],{"type":49,"tag":192,"props":2119,"children":2120},{"style":235},[2121],{"type":55,"value":2122},"}\n",{"type":49,"tag":174,"props":2124,"children":2126},{"id":2125},"handoff-tools",[2127],{"type":55,"value":2128},"Handoff Tools",{"type":49,"tag":58,"props":2130,"children":2131},{},[2132],{"type":55,"value":2133},"Handoff tools define how assistants transfer between each other:",{"type":49,"tag":181,"props":2135,"children":2137},{"className":1927,"code":2136,"language":1929,"meta":186,"style":186},"{\n  \"type\": \"handoff\",\n  \"destinations\": [\n    {\n      \"type\": \"assistant\",\n      \"assistantId\": \"target-assistant-id\",\n      \"description\": \"Clear description of WHEN to transfer. Be specific about trigger conditions.\"\n    }\n  ],\n  \"function\": {\n    \"name\": \"handoff_to_sales\"\n  }\n}\n",[2138],{"type":49,"tag":79,"props":2139,"children":2140},{"__ignoreMap":186},[2141,2148,2184,2208,2215,2251,2287,2321,2329,2337,2361,2394,2402],{"type":49,"tag":192,"props":2142,"children":2143},{"class":194,"line":195},[2144],{"type":49,"tag":192,"props":2145,"children":2146},{"style":235},[2147],{"type":55,"value":301},{"type":49,"tag":192,"props":2149,"children":2150},{"class":194,"line":226},[2151,2155,2160,2164,2168,2172,2176,2180],{"type":49,"tag":192,"props":2152,"children":2153},{"style":235},[2154],{"type":55,"value":1948},{"type":49,"tag":192,"props":2156,"children":2157},{"style":780},[2158],{"type":55,"value":2159},"type",{"type":49,"tag":192,"props":2161,"children":2162},{"style":235},[2163],{"type":55,"value":253},{"type":49,"tag":192,"props":2165,"children":2166},{"style":235},[2167],{"type":55,"value":824},{"type":49,"tag":192,"props":2169,"children":2170},{"style":235},[2171],{"type":55,"value":238},{"type":49,"tag":192,"props":2173,"children":2174},{"style":204},[2175],{"type":55,"value":1278},{"type":49,"tag":192,"props":2177,"children":2178},{"style":235},[2179],{"type":55,"value":253},{"type":49,"tag":192,"props":2181,"children":2182},{"style":235},[2183],{"type":55,"value":954},{"type":49,"tag":192,"props":2185,"children":2186},{"class":194,"line":260},[2187,2191,2196,2200,2204],{"type":49,"tag":192,"props":2188,"children":2189},{"style":235},[2190],{"type":55,"value":1948},{"type":49,"tag":192,"props":2192,"children":2193},{"style":780},[2194],{"type":55,"value":2195},"destinations",{"type":49,"tag":192,"props":2197,"children":2198},{"style":235},[2199],{"type":55,"value":253},{"type":49,"tag":192,"props":2201,"children":2202},{"style":235},[2203],{"type":55,"value":824},{"type":49,"tag":192,"props":2205,"children":2206},{"style":235},[2207],{"type":55,"value":971},{"type":49,"tag":192,"props":2209,"children":2210},{"class":194,"line":285},[2211],{"type":49,"tag":192,"props":2212,"children":2213},{"style":235},[2214],{"type":55,"value":979},{"type":49,"tag":192,"props":2216,"children":2217},{"class":194,"line":304},[2218,2223,2227,2231,2235,2239,2243,2247],{"type":49,"tag":192,"props":2219,"children":2220},{"style":235},[2221],{"type":55,"value":2222},"      \"",{"type":49,"tag":192,"props":2224,"children":2225},{"style":199},[2226],{"type":55,"value":2159},{"type":49,"tag":192,"props":2228,"children":2229},{"style":235},[2230],{"type":55,"value":253},{"type":49,"tag":192,"props":2232,"children":2233},{"style":235},[2234],{"type":55,"value":824},{"type":49,"tag":192,"props":2236,"children":2237},{"style":235},[2238],{"type":55,"value":238},{"type":49,"tag":192,"props":2240,"children":2241},{"style":204},[2242],{"type":55,"value":1331},{"type":49,"tag":192,"props":2244,"children":2245},{"style":235},[2246],{"type":55,"value":253},{"type":49,"tag":192,"props":2248,"children":2249},{"style":235},[2250],{"type":55,"value":954},{"type":49,"tag":192,"props":2252,"children":2253},{"class":194,"line":313},[2254,2258,2262,2266,2270,2274,2279,2283],{"type":49,"tag":192,"props":2255,"children":2256},{"style":235},[2257],{"type":55,"value":2222},{"type":49,"tag":192,"props":2259,"children":2260},{"style":199},[2261],{"type":55,"value":2080},{"type":49,"tag":192,"props":2263,"children":2264},{"style":235},[2265],{"type":55,"value":253},{"type":49,"tag":192,"props":2267,"children":2268},{"style":235},[2269],{"type":55,"value":824},{"type":49,"tag":192,"props":2271,"children":2272},{"style":235},[2273],{"type":55,"value":238},{"type":49,"tag":192,"props":2275,"children":2276},{"style":204},[2277],{"type":55,"value":2278},"target-assistant-id",{"type":49,"tag":192,"props":2280,"children":2281},{"style":235},[2282],{"type":55,"value":253},{"type":49,"tag":192,"props":2284,"children":2285},{"style":235},[2286],{"type":55,"value":954},{"type":49,"tag":192,"props":2288,"children":2289},{"class":194,"line":27},[2290,2294,2299,2303,2307,2311,2316],{"type":49,"tag":192,"props":2291,"children":2292},{"style":235},[2293],{"type":55,"value":2222},{"type":49,"tag":192,"props":2295,"children":2296},{"style":199},[2297],{"type":55,"value":2298},"description",{"type":49,"tag":192,"props":2300,"children":2301},{"style":235},[2302],{"type":55,"value":253},{"type":49,"tag":192,"props":2304,"children":2305},{"style":235},[2306],{"type":55,"value":824},{"type":49,"tag":192,"props":2308,"children":2309},{"style":235},[2310],{"type":55,"value":238},{"type":49,"tag":192,"props":2312,"children":2313},{"style":204},[2314],{"type":55,"value":2315},"Clear description of WHEN to transfer. Be specific about trigger conditions.",{"type":49,"tag":192,"props":2317,"children":2318},{"style":235},[2319],{"type":55,"value":2320},"\"\n",{"type":49,"tag":192,"props":2322,"children":2323},{"class":194,"line":330},[2324],{"type":49,"tag":192,"props":2325,"children":2326},{"style":235},[2327],{"type":55,"value":2328},"    }\n",{"type":49,"tag":192,"props":2330,"children":2331},{"class":194,"line":339},[2332],{"type":49,"tag":192,"props":2333,"children":2334},{"style":235},[2335],{"type":55,"value":2336},"  ],\n",{"type":49,"tag":192,"props":2338,"children":2339},{"class":194,"line":348},[2340,2344,2349,2353,2357],{"type":49,"tag":192,"props":2341,"children":2342},{"style":235},[2343],{"type":55,"value":1948},{"type":49,"tag":192,"props":2345,"children":2346},{"style":780},[2347],{"type":55,"value":2348},"function",{"type":49,"tag":192,"props":2350,"children":2351},{"style":235},[2352],{"type":55,"value":253},{"type":49,"tag":192,"props":2354,"children":2355},{"style":235},[2356],{"type":55,"value":824},{"type":49,"tag":192,"props":2358,"children":2359},{"style":235},[2360],{"type":55,"value":996},{"type":49,"tag":192,"props":2362,"children":2363},{"class":194,"line":357},[2364,2369,2373,2377,2381,2385,2390],{"type":49,"tag":192,"props":2365,"children":2366},{"style":235},[2367],{"type":55,"value":2368},"    \"",{"type":49,"tag":192,"props":2370,"children":2371},{"style":199},[2372],{"type":55,"value":2001},{"type":49,"tag":192,"props":2374,"children":2375},{"style":235},[2376],{"type":55,"value":253},{"type":49,"tag":192,"props":2378,"children":2379},{"style":235},[2380],{"type":55,"value":824},{"type":49,"tag":192,"props":2382,"children":2383},{"style":235},[2384],{"type":55,"value":238},{"type":49,"tag":192,"props":2386,"children":2387},{"style":204},[2388],{"type":55,"value":2389},"handoff_to_sales",{"type":49,"tag":192,"props":2391,"children":2392},{"style":235},[2393],{"type":55,"value":2320},{"type":49,"tag":192,"props":2395,"children":2396},{"class":194,"line":366},[2397],{"type":49,"tag":192,"props":2398,"children":2399},{"style":235},[2400],{"type":55,"value":2401},"  }\n",{"type":49,"tag":192,"props":2403,"children":2404},{"class":194,"line":375},[2405],{"type":49,"tag":192,"props":2406,"children":2407},{"style":235},[2408],{"type":55,"value":2122},{"type":49,"tag":174,"props":2410,"children":2412},{"id":2411},"assistant-overrides",[2413],{"type":55,"value":2414},"Assistant Overrides",{"type":49,"tag":58,"props":2416,"children":2417},{},[2418],{"type":55,"value":2419},"Override saved assistant settings within the squad context without modifying the original:",{"type":49,"tag":181,"props":2421,"children":2423},{"className":1927,"code":2422,"language":1929,"meta":186,"style":186},"{\n  \"assistantId\": \"saved-assistant-id\",\n  \"assistantOverrides\": {\n    \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Elliot\", \"version\": 2 },\n    \"firstMessage\": \"Overridden greeting for this squad\"\n  }\n}\n",[2424],{"type":49,"tag":79,"props":2425,"children":2426},{"__ignoreMap":186},[2427,2434,2469,2493,2609,2642,2649],{"type":49,"tag":192,"props":2428,"children":2429},{"class":194,"line":195},[2430],{"type":49,"tag":192,"props":2431,"children":2432},{"style":235},[2433],{"type":55,"value":301},{"type":49,"tag":192,"props":2435,"children":2436},{"class":194,"line":226},[2437,2441,2445,2449,2453,2457,2461,2465],{"type":49,"tag":192,"props":2438,"children":2439},{"style":235},[2440],{"type":55,"value":1948},{"type":49,"tag":192,"props":2442,"children":2443},{"style":780},[2444],{"type":55,"value":2080},{"type":49,"tag":192,"props":2446,"children":2447},{"style":235},[2448],{"type":55,"value":253},{"type":49,"tag":192,"props":2450,"children":2451},{"style":235},[2452],{"type":55,"value":824},{"type":49,"tag":192,"props":2454,"children":2455},{"style":235},[2456],{"type":55,"value":238},{"type":49,"tag":192,"props":2458,"children":2459},{"style":204},[2460],{"type":55,"value":2097},{"type":49,"tag":192,"props":2462,"children":2463},{"style":235},[2464],{"type":55,"value":253},{"type":49,"tag":192,"props":2466,"children":2467},{"style":235},[2468],{"type":55,"value":954},{"type":49,"tag":192,"props":2470,"children":2471},{"class":194,"line":260},[2472,2476,2481,2485,2489],{"type":49,"tag":192,"props":2473,"children":2474},{"style":235},[2475],{"type":55,"value":1948},{"type":49,"tag":192,"props":2477,"children":2478},{"style":780},[2479],{"type":55,"value":2480},"assistantOverrides",{"type":49,"tag":192,"props":2482,"children":2483},{"style":235},[2484],{"type":55,"value":253},{"type":49,"tag":192,"props":2486,"children":2487},{"style":235},[2488],{"type":55,"value":824},{"type":49,"tag":192,"props":2490,"children":2491},{"style":235},[2492],{"type":55,"value":996},{"type":49,"tag":192,"props":2494,"children":2495},{"class":194,"line":285},[2496,2500,2504,2508,2512,2516,2520,2525,2529,2533,2537,2541,2545,2549,2553,2558,2562,2566,2570,2575,2579,2583,2587,2592,2596,2600,2605],{"type":49,"tag":192,"props":2497,"children":2498},{"style":235},[2499],{"type":55,"value":2368},{"type":49,"tag":192,"props":2501,"children":2502},{"style":199},[2503],{"type":55,"value":19},{"type":49,"tag":192,"props":2505,"children":2506},{"style":235},[2507],{"type":55,"value":253},{"type":49,"tag":192,"props":2509,"children":2510},{"style":235},[2511],{"type":55,"value":824},{"type":49,"tag":192,"props":2513,"children":2514},{"style":235},[2515],{"type":55,"value":732},{"type":49,"tag":192,"props":2517,"children":2518},{"style":235},[2519],{"type":55,"value":238},{"type":49,"tag":192,"props":2521,"children":2522},{"style":1998},[2523],{"type":55,"value":2524},"provider",{"type":49,"tag":192,"props":2526,"children":2527},{"style":235},[2528],{"type":55,"value":253},{"type":49,"tag":192,"props":2530,"children":2531},{"style":235},[2532],{"type":55,"value":824},{"type":49,"tag":192,"props":2534,"children":2535},{"style":235},[2536],{"type":55,"value":238},{"type":49,"tag":192,"props":2538,"children":2539},{"style":204},[2540],{"type":55,"value":8},{"type":49,"tag":192,"props":2542,"children":2543},{"style":235},[2544],{"type":55,"value":253},{"type":49,"tag":192,"props":2546,"children":2547},{"style":235},[2548],{"type":55,"value":1582},{"type":49,"tag":192,"props":2550,"children":2551},{"style":235},[2552],{"type":55,"value":238},{"type":49,"tag":192,"props":2554,"children":2555},{"style":1998},[2556],{"type":55,"value":2557},"voiceId",{"type":49,"tag":192,"props":2559,"children":2560},{"style":235},[2561],{"type":55,"value":253},{"type":49,"tag":192,"props":2563,"children":2564},{"style":235},[2565],{"type":55,"value":824},{"type":49,"tag":192,"props":2567,"children":2568},{"style":235},[2569],{"type":55,"value":238},{"type":49,"tag":192,"props":2571,"children":2572},{"style":204},[2573],{"type":55,"value":2574},"Elliot",{"type":49,"tag":192,"props":2576,"children":2577},{"style":235},[2578],{"type":55,"value":253},{"type":49,"tag":192,"props":2580,"children":2581},{"style":235},[2582],{"type":55,"value":1582},{"type":49,"tag":192,"props":2584,"children":2585},{"style":235},[2586],{"type":55,"value":238},{"type":49,"tag":192,"props":2588,"children":2589},{"style":1998},[2590],{"type":55,"value":2591},"version",{"type":49,"tag":192,"props":2593,"children":2594},{"style":235},[2595],{"type":55,"value":253},{"type":49,"tag":192,"props":2597,"children":2598},{"style":235},[2599],{"type":55,"value":824},{"type":49,"tag":192,"props":2601,"children":2602},{"style":1998},[2603],{"type":55,"value":2604}," 2",{"type":49,"tag":192,"props":2606,"children":2607},{"style":235},[2608],{"type":55,"value":1609},{"type":49,"tag":192,"props":2610,"children":2611},{"class":194,"line":304},[2612,2616,2621,2625,2629,2633,2638],{"type":49,"tag":192,"props":2613,"children":2614},{"style":235},[2615],{"type":55,"value":2368},{"type":49,"tag":192,"props":2617,"children":2618},{"style":199},[2619],{"type":55,"value":2620},"firstMessage",{"type":49,"tag":192,"props":2622,"children":2623},{"style":235},[2624],{"type":55,"value":253},{"type":49,"tag":192,"props":2626,"children":2627},{"style":235},[2628],{"type":55,"value":824},{"type":49,"tag":192,"props":2630,"children":2631},{"style":235},[2632],{"type":55,"value":238},{"type":49,"tag":192,"props":2634,"children":2635},{"style":204},[2636],{"type":55,"value":2637},"Overridden greeting for this squad",{"type":49,"tag":192,"props":2639,"children":2640},{"style":235},[2641],{"type":55,"value":2320},{"type":49,"tag":192,"props":2643,"children":2644},{"class":194,"line":313},[2645],{"type":49,"tag":192,"props":2646,"children":2647},{"style":235},[2648],{"type":55,"value":2401},{"type":49,"tag":192,"props":2650,"children":2651},{"class":194,"line":27},[2652],{"type":49,"tag":192,"props":2653,"children":2654},{"style":235},[2655],{"type":55,"value":2122},{"type":49,"tag":174,"props":2657,"children":2659},{"id":2658},"appending-tools-via-overrides",[2660],{"type":55,"value":2661},"Appending Tools via Overrides",{"type":49,"tag":58,"props":2663,"children":2664},{},[2665],{"type":55,"value":2666},"Add squad-specific tools to a saved assistant:",{"type":49,"tag":181,"props":2668,"children":2670},{"className":1927,"code":2669,"language":1929,"meta":186,"style":186},"{\n  \"assistantId\": \"saved-assistant-id\",\n  \"assistantOverrides\": {\n    \"tools:append\": [\n      {\n        \"type\": \"handoff\",\n        \"destinations\": [\n          {\n            \"type\": \"assistant\",\n            \"assistantId\": \"another-assistant-id\",\n            \"description\": \"Transfer when customer needs billing help\"\n          }\n        ],\n        \"function\": { \"name\": \"handoff_to_billing\" }\n      }\n    ]\n  }\n}\n",[2671],{"type":49,"tag":79,"props":2672,"children":2673},{"__ignoreMap":186},[2674,2681,2716,2739,2763,2770,2806,2829,2837,2873,2909,2941,2949,2957,3013,3020,3027,3034],{"type":49,"tag":192,"props":2675,"children":2676},{"class":194,"line":195},[2677],{"type":49,"tag":192,"props":2678,"children":2679},{"style":235},[2680],{"type":55,"value":301},{"type":49,"tag":192,"props":2682,"children":2683},{"class":194,"line":226},[2684,2688,2692,2696,2700,2704,2708,2712],{"type":49,"tag":192,"props":2685,"children":2686},{"style":235},[2687],{"type":55,"value":1948},{"type":49,"tag":192,"props":2689,"children":2690},{"style":780},[2691],{"type":55,"value":2080},{"type":49,"tag":192,"props":2693,"children":2694},{"style":235},[2695],{"type":55,"value":253},{"type":49,"tag":192,"props":2697,"children":2698},{"style":235},[2699],{"type":55,"value":824},{"type":49,"tag":192,"props":2701,"children":2702},{"style":235},[2703],{"type":55,"value":238},{"type":49,"tag":192,"props":2705,"children":2706},{"style":204},[2707],{"type":55,"value":2097},{"type":49,"tag":192,"props":2709,"children":2710},{"style":235},[2711],{"type":55,"value":253},{"type":49,"tag":192,"props":2713,"children":2714},{"style":235},[2715],{"type":55,"value":954},{"type":49,"tag":192,"props":2717,"children":2718},{"class":194,"line":260},[2719,2723,2727,2731,2735],{"type":49,"tag":192,"props":2720,"children":2721},{"style":235},[2722],{"type":55,"value":1948},{"type":49,"tag":192,"props":2724,"children":2725},{"style":780},[2726],{"type":55,"value":2480},{"type":49,"tag":192,"props":2728,"children":2729},{"style":235},[2730],{"type":55,"value":253},{"type":49,"tag":192,"props":2732,"children":2733},{"style":235},[2734],{"type":55,"value":824},{"type":49,"tag":192,"props":2736,"children":2737},{"style":235},[2738],{"type":55,"value":996},{"type":49,"tag":192,"props":2740,"children":2741},{"class":194,"line":285},[2742,2746,2751,2755,2759],{"type":49,"tag":192,"props":2743,"children":2744},{"style":235},[2745],{"type":55,"value":2368},{"type":49,"tag":192,"props":2747,"children":2748},{"style":199},[2749],{"type":55,"value":2750},"tools:append",{"type":49,"tag":192,"props":2752,"children":2753},{"style":235},[2754],{"type":55,"value":253},{"type":49,"tag":192,"props":2756,"children":2757},{"style":235},[2758],{"type":55,"value":824},{"type":49,"tag":192,"props":2760,"children":2761},{"style":235},[2762],{"type":55,"value":971},{"type":49,"tag":192,"props":2764,"children":2765},{"class":194,"line":304},[2766],{"type":49,"tag":192,"props":2767,"children":2768},{"style":235},[2769],{"type":55,"value":327},{"type":49,"tag":192,"props":2771,"children":2772},{"class":194,"line":313},[2773,2778,2782,2786,2790,2794,2798,2802],{"type":49,"tag":192,"props":2774,"children":2775},{"style":235},[2776],{"type":55,"value":2777},"        \"",{"type":49,"tag":192,"props":2779,"children":2780},{"style":1998},[2781],{"type":55,"value":2159},{"type":49,"tag":192,"props":2783,"children":2784},{"style":235},[2785],{"type":55,"value":253},{"type":49,"tag":192,"props":2787,"children":2788},{"style":235},[2789],{"type":55,"value":824},{"type":49,"tag":192,"props":2791,"children":2792},{"style":235},[2793],{"type":55,"value":238},{"type":49,"tag":192,"props":2795,"children":2796},{"style":204},[2797],{"type":55,"value":1278},{"type":49,"tag":192,"props":2799,"children":2800},{"style":235},[2801],{"type":55,"value":253},{"type":49,"tag":192,"props":2803,"children":2804},{"style":235},[2805],{"type":55,"value":954},{"type":49,"tag":192,"props":2807,"children":2808},{"class":194,"line":27},[2809,2813,2817,2821,2825],{"type":49,"tag":192,"props":2810,"children":2811},{"style":235},[2812],{"type":55,"value":2777},{"type":49,"tag":192,"props":2814,"children":2815},{"style":1998},[2816],{"type":55,"value":2195},{"type":49,"tag":192,"props":2818,"children":2819},{"style":235},[2820],{"type":55,"value":253},{"type":49,"tag":192,"props":2822,"children":2823},{"style":235},[2824],{"type":55,"value":824},{"type":49,"tag":192,"props":2826,"children":2827},{"style":235},[2828],{"type":55,"value":971},{"type":49,"tag":192,"props":2830,"children":2831},{"class":194,"line":330},[2832],{"type":49,"tag":192,"props":2833,"children":2834},{"style":235},[2835],{"type":55,"value":2836},"          {\n",{"type":49,"tag":192,"props":2838,"children":2839},{"class":194,"line":339},[2840,2845,2849,2853,2857,2861,2865,2869],{"type":49,"tag":192,"props":2841,"children":2842},{"style":235},[2843],{"type":55,"value":2844},"            \"",{"type":49,"tag":192,"props":2846,"children":2847},{"style":816},[2848],{"type":55,"value":2159},{"type":49,"tag":192,"props":2850,"children":2851},{"style":235},[2852],{"type":55,"value":253},{"type":49,"tag":192,"props":2854,"children":2855},{"style":235},[2856],{"type":55,"value":824},{"type":49,"tag":192,"props":2858,"children":2859},{"style":235},[2860],{"type":55,"value":238},{"type":49,"tag":192,"props":2862,"children":2863},{"style":204},[2864],{"type":55,"value":1331},{"type":49,"tag":192,"props":2866,"children":2867},{"style":235},[2868],{"type":55,"value":253},{"type":49,"tag":192,"props":2870,"children":2871},{"style":235},[2872],{"type":55,"value":954},{"type":49,"tag":192,"props":2874,"children":2875},{"class":194,"line":348},[2876,2880,2884,2888,2892,2896,2901,2905],{"type":49,"tag":192,"props":2877,"children":2878},{"style":235},[2879],{"type":55,"value":2844},{"type":49,"tag":192,"props":2881,"children":2882},{"style":816},[2883],{"type":55,"value":2080},{"type":49,"tag":192,"props":2885,"children":2886},{"style":235},[2887],{"type":55,"value":253},{"type":49,"tag":192,"props":2889,"children":2890},{"style":235},[2891],{"type":55,"value":824},{"type":49,"tag":192,"props":2893,"children":2894},{"style":235},[2895],{"type":55,"value":238},{"type":49,"tag":192,"props":2897,"children":2898},{"style":204},[2899],{"type":55,"value":2900},"another-assistant-id",{"type":49,"tag":192,"props":2902,"children":2903},{"style":235},[2904],{"type":55,"value":253},{"type":49,"tag":192,"props":2906,"children":2907},{"style":235},[2908],{"type":55,"value":954},{"type":49,"tag":192,"props":2910,"children":2911},{"class":194,"line":357},[2912,2916,2920,2924,2928,2932,2937],{"type":49,"tag":192,"props":2913,"children":2914},{"style":235},[2915],{"type":55,"value":2844},{"type":49,"tag":192,"props":2917,"children":2918},{"style":816},[2919],{"type":55,"value":2298},{"type":49,"tag":192,"props":2921,"children":2922},{"style":235},[2923],{"type":55,"value":253},{"type":49,"tag":192,"props":2925,"children":2926},{"style":235},[2927],{"type":55,"value":824},{"type":49,"tag":192,"props":2929,"children":2930},{"style":235},[2931],{"type":55,"value":238},{"type":49,"tag":192,"props":2933,"children":2934},{"style":204},[2935],{"type":55,"value":2936},"Transfer when customer needs billing help",{"type":49,"tag":192,"props":2938,"children":2939},{"style":235},[2940],{"type":55,"value":2320},{"type":49,"tag":192,"props":2942,"children":2943},{"class":194,"line":366},[2944],{"type":49,"tag":192,"props":2945,"children":2946},{"style":235},[2947],{"type":55,"value":2948},"          }\n",{"type":49,"tag":192,"props":2950,"children":2951},{"class":194,"line":375},[2952],{"type":49,"tag":192,"props":2953,"children":2954},{"style":235},[2955],{"type":55,"value":2956},"        ],\n",{"type":49,"tag":192,"props":2958,"children":2959},{"class":194,"line":384},[2960,2964,2968,2972,2976,2980,2984,2988,2992,2996,3000,3005,3009],{"type":49,"tag":192,"props":2961,"children":2962},{"style":235},[2963],{"type":55,"value":2777},{"type":49,"tag":192,"props":2965,"children":2966},{"style":1998},[2967],{"type":55,"value":2348},{"type":49,"tag":192,"props":2969,"children":2970},{"style":235},[2971],{"type":55,"value":253},{"type":49,"tag":192,"props":2973,"children":2974},{"style":235},[2975],{"type":55,"value":824},{"type":49,"tag":192,"props":2977,"children":2978},{"style":235},[2979],{"type":55,"value":732},{"type":49,"tag":192,"props":2981,"children":2982},{"style":235},[2983],{"type":55,"value":238},{"type":49,"tag":192,"props":2985,"children":2986},{"style":816},[2987],{"type":55,"value":2001},{"type":49,"tag":192,"props":2989,"children":2990},{"style":235},[2991],{"type":55,"value":253},{"type":49,"tag":192,"props":2993,"children":2994},{"style":235},[2995],{"type":55,"value":824},{"type":49,"tag":192,"props":2997,"children":2998},{"style":235},[2999],{"type":55,"value":238},{"type":49,"tag":192,"props":3001,"children":3002},{"style":204},[3003],{"type":55,"value":3004},"handoff_to_billing",{"type":49,"tag":192,"props":3006,"children":3007},{"style":235},[3008],{"type":55,"value":253},{"type":49,"tag":192,"props":3010,"children":3011},{"style":235},[3012],{"type":55,"value":2106},{"type":49,"tag":192,"props":3014,"children":3015},{"class":194,"line":393},[3016],{"type":49,"tag":192,"props":3017,"children":3018},{"style":235},[3019],{"type":55,"value":680},{"type":49,"tag":192,"props":3021,"children":3022},{"class":194,"line":402},[3023],{"type":49,"tag":192,"props":3024,"children":3025},{"style":235},[3026],{"type":55,"value":689},{"type":49,"tag":192,"props":3028,"children":3029},{"class":194,"line":411},[3030],{"type":49,"tag":192,"props":3031,"children":3032},{"style":235},[3033],{"type":55,"value":2401},{"type":49,"tag":192,"props":3035,"children":3036},{"class":194,"line":420},[3037],{"type":49,"tag":192,"props":3038,"children":3039},{"style":235},[3040],{"type":55,"value":2122},{"type":49,"tag":174,"props":3042,"children":3044},{"id":3043},"members-overrides",[3045],{"type":55,"value":3046},"Members Overrides",{"type":49,"tag":58,"props":3048,"children":3049},{},[3050],{"type":55,"value":3051},"Apply configuration to ALL members simultaneously:",{"type":49,"tag":181,"props":3053,"children":3055},{"className":1927,"code":3054,"language":1929,"meta":186,"style":186},"{\n  \"members\": [\n    { \"assistant\": { \"name\": \"Agent A\", \"...\" : \"...\" } },\n    { \"assistantId\": \"agent-b-id\" }\n  ],\n  \"membersOverrides\": {\n    \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Elliot\", \"version\": 2 },\n    \"transcriber\": { \"provider\": \"deepgram\", \"model\": \"nova-3\", \"language\": \"en\" }\n  }\n}\n",[3056],{"type":49,"tag":79,"props":3057,"children":3058},{"__ignoreMap":186},[3059,3066,3089,3185,3225,3232,3256,3367,3489,3496],{"type":49,"tag":192,"props":3060,"children":3061},{"class":194,"line":195},[3062],{"type":49,"tag":192,"props":3063,"children":3064},{"style":235},[3065],{"type":55,"value":301},{"type":49,"tag":192,"props":3067,"children":3068},{"class":194,"line":226},[3069,3073,3077,3081,3085],{"type":49,"tag":192,"props":3070,"children":3071},{"style":235},[3072],{"type":55,"value":1948},{"type":49,"tag":192,"props":3074,"children":3075},{"style":780},[3076],{"type":55,"value":1881},{"type":49,"tag":192,"props":3078,"children":3079},{"style":235},[3080],{"type":55,"value":253},{"type":49,"tag":192,"props":3082,"children":3083},{"style":235},[3084],{"type":55,"value":824},{"type":49,"tag":192,"props":3086,"children":3087},{"style":235},[3088],{"type":55,"value":971},{"type":49,"tag":192,"props":3090,"children":3091},{"class":194,"line":260},[3092,3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3141,3145,3149,3153,3157,3161,3165,3169,3173,3177,3181],{"type":49,"tag":192,"props":3093,"children":3094},{"style":235},[3095],{"type":55,"value":1725},{"type":49,"tag":192,"props":3097,"children":3098},{"style":235},[3099],{"type":55,"value":238},{"type":49,"tag":192,"props":3101,"children":3102},{"style":199},[3103],{"type":55,"value":1331},{"type":49,"tag":192,"props":3105,"children":3106},{"style":235},[3107],{"type":55,"value":253},{"type":49,"tag":192,"props":3109,"children":3110},{"style":235},[3111],{"type":55,"value":824},{"type":49,"tag":192,"props":3113,"children":3114},{"style":235},[3115],{"type":55,"value":732},{"type":49,"tag":192,"props":3117,"children":3118},{"style":235},[3119],{"type":55,"value":238},{"type":49,"tag":192,"props":3121,"children":3122},{"style":1998},[3123],{"type":55,"value":2001},{"type":49,"tag":192,"props":3125,"children":3126},{"style":235},[3127],{"type":55,"value":253},{"type":49,"tag":192,"props":3129,"children":3130},{"style":235},[3131],{"type":55,"value":824},{"type":49,"tag":192,"props":3133,"children":3134},{"style":235},[3135],{"type":55,"value":238},{"type":49,"tag":192,"props":3137,"children":3138},{"style":204},[3139],{"type":55,"value":3140},"Agent A",{"type":49,"tag":192,"props":3142,"children":3143},{"style":235},[3144],{"type":55,"value":253},{"type":49,"tag":192,"props":3146,"children":3147},{"style":235},[3148],{"type":55,"value":1582},{"type":49,"tag":192,"props":3150,"children":3151},{"style":235},[3152],{"type":55,"value":238},{"type":49,"tag":192,"props":3154,"children":3155},{"style":1998},[3156],{"type":55,"value":2035},{"type":49,"tag":192,"props":3158,"children":3159},{"style":235},[3160],{"type":55,"value":253},{"type":49,"tag":192,"props":3162,"children":3163},{"style":235},[3164],{"type":55,"value":2044},{"type":49,"tag":192,"props":3166,"children":3167},{"style":235},[3168],{"type":55,"value":238},{"type":49,"tag":192,"props":3170,"children":3171},{"style":204},[3172],{"type":55,"value":2035},{"type":49,"tag":192,"props":3174,"children":3175},{"style":235},[3176],{"type":55,"value":253},{"type":49,"tag":192,"props":3178,"children":3179},{"style":235},[3180],{"type":55,"value":742},{"type":49,"tag":192,"props":3182,"children":3183},{"style":235},[3184],{"type":55,"value":1609},{"type":49,"tag":192,"props":3186,"children":3187},{"class":194,"line":285},[3188,3192,3196,3200,3204,3208,3212,3217,3221],{"type":49,"tag":192,"props":3189,"children":3190},{"style":235},[3191],{"type":55,"value":1725},{"type":49,"tag":192,"props":3193,"children":3194},{"style":235},[3195],{"type":55,"value":238},{"type":49,"tag":192,"props":3197,"children":3198},{"style":199},[3199],{"type":55,"value":2080},{"type":49,"tag":192,"props":3201,"children":3202},{"style":235},[3203],{"type":55,"value":253},{"type":49,"tag":192,"props":3205,"children":3206},{"style":235},[3207],{"type":55,"value":824},{"type":49,"tag":192,"props":3209,"children":3210},{"style":235},[3211],{"type":55,"value":238},{"type":49,"tag":192,"props":3213,"children":3214},{"style":204},[3215],{"type":55,"value":3216},"agent-b-id",{"type":49,"tag":192,"props":3218,"children":3219},{"style":235},[3220],{"type":55,"value":253},{"type":49,"tag":192,"props":3222,"children":3223},{"style":235},[3224],{"type":55,"value":2106},{"type":49,"tag":192,"props":3226,"children":3227},{"class":194,"line":304},[3228],{"type":49,"tag":192,"props":3229,"children":3230},{"style":235},[3231],{"type":55,"value":2336},{"type":49,"tag":192,"props":3233,"children":3234},{"class":194,"line":313},[3235,3239,3244,3248,3252],{"type":49,"tag":192,"props":3236,"children":3237},{"style":235},[3238],{"type":55,"value":1948},{"type":49,"tag":192,"props":3240,"children":3241},{"style":780},[3242],{"type":55,"value":3243},"membersOverrides",{"type":49,"tag":192,"props":3245,"children":3246},{"style":235},[3247],{"type":55,"value":253},{"type":49,"tag":192,"props":3249,"children":3250},{"style":235},[3251],{"type":55,"value":824},{"type":49,"tag":192,"props":3253,"children":3254},{"style":235},[3255],{"type":55,"value":996},{"type":49,"tag":192,"props":3257,"children":3258},{"class":194,"line":27},[3259,3263,3267,3271,3275,3279,3283,3287,3291,3295,3299,3303,3307,3311,3315,3319,3323,3327,3331,3335,3339,3343,3347,3351,3355,3359,3363],{"type":49,"tag":192,"props":3260,"children":3261},{"style":235},[3262],{"type":55,"value":2368},{"type":49,"tag":192,"props":3264,"children":3265},{"style":199},[3266],{"type":55,"value":19},{"type":49,"tag":192,"props":3268,"children":3269},{"style":235},[3270],{"type":55,"value":253},{"type":49,"tag":192,"props":3272,"children":3273},{"style":235},[3274],{"type":55,"value":824},{"type":49,"tag":192,"props":3276,"children":3277},{"style":235},[3278],{"type":55,"value":732},{"type":49,"tag":192,"props":3280,"children":3281},{"style":235},[3282],{"type":55,"value":238},{"type":49,"tag":192,"props":3284,"children":3285},{"style":1998},[3286],{"type":55,"value":2524},{"type":49,"tag":192,"props":3288,"children":3289},{"style":235},[3290],{"type":55,"value":253},{"type":49,"tag":192,"props":3292,"children":3293},{"style":235},[3294],{"type":55,"value":824},{"type":49,"tag":192,"props":3296,"children":3297},{"style":235},[3298],{"type":55,"value":238},{"type":49,"tag":192,"props":3300,"children":3301},{"style":204},[3302],{"type":55,"value":8},{"type":49,"tag":192,"props":3304,"children":3305},{"style":235},[3306],{"type":55,"value":253},{"type":49,"tag":192,"props":3308,"children":3309},{"style":235},[3310],{"type":55,"value":1582},{"type":49,"tag":192,"props":3312,"children":3313},{"style":235},[3314],{"type":55,"value":238},{"type":49,"tag":192,"props":3316,"children":3317},{"style":1998},[3318],{"type":55,"value":2557},{"type":49,"tag":192,"props":3320,"children":3321},{"style":235},[3322],{"type":55,"value":253},{"type":49,"tag":192,"props":3324,"children":3325},{"style":235},[3326],{"type":55,"value":824},{"type":49,"tag":192,"props":3328,"children":3329},{"style":235},[3330],{"type":55,"value":238},{"type":49,"tag":192,"props":3332,"children":3333},{"style":204},[3334],{"type":55,"value":2574},{"type":49,"tag":192,"props":3336,"children":3337},{"style":235},[3338],{"type":55,"value":253},{"type":49,"tag":192,"props":3340,"children":3341},{"style":235},[3342],{"type":55,"value":1582},{"type":49,"tag":192,"props":3344,"children":3345},{"style":235},[3346],{"type":55,"value":238},{"type":49,"tag":192,"props":3348,"children":3349},{"style":1998},[3350],{"type":55,"value":2591},{"type":49,"tag":192,"props":3352,"children":3353},{"style":235},[3354],{"type":55,"value":253},{"type":49,"tag":192,"props":3356,"children":3357},{"style":235},[3358],{"type":55,"value":824},{"type":49,"tag":192,"props":3360,"children":3361},{"style":1998},[3362],{"type":55,"value":2604},{"type":49,"tag":192,"props":3364,"children":3365},{"style":235},[3366],{"type":55,"value":1609},{"type":49,"tag":192,"props":3368,"children":3369},{"class":194,"line":330},[3370,3374,3379,3383,3387,3391,3395,3399,3403,3407,3411,3415,3419,3423,3427,3432,3436,3440,3444,3448,3452,3456,3460,3465,3469,3473,3477,3481,3485],{"type":49,"tag":192,"props":3371,"children":3372},{"style":235},[3373],{"type":55,"value":2368},{"type":49,"tag":192,"props":3375,"children":3376},{"style":199},[3377],{"type":55,"value":3378},"transcriber",{"type":49,"tag":192,"props":3380,"children":3381},{"style":235},[3382],{"type":55,"value":253},{"type":49,"tag":192,"props":3384,"children":3385},{"style":235},[3386],{"type":55,"value":824},{"type":49,"tag":192,"props":3388,"children":3389},{"style":235},[3390],{"type":55,"value":732},{"type":49,"tag":192,"props":3392,"children":3393},{"style":235},[3394],{"type":55,"value":238},{"type":49,"tag":192,"props":3396,"children":3397},{"style":1998},[3398],{"type":55,"value":2524},{"type":49,"tag":192,"props":3400,"children":3401},{"style":235},[3402],{"type":55,"value":253},{"type":49,"tag":192,"props":3404,"children":3405},{"style":235},[3406],{"type":55,"value":824},{"type":49,"tag":192,"props":3408,"children":3409},{"style":235},[3410],{"type":55,"value":238},{"type":49,"tag":192,"props":3412,"children":3413},{"style":204},[3414],{"type":55,"value":1642},{"type":49,"tag":192,"props":3416,"children":3417},{"style":235},[3418],{"type":55,"value":253},{"type":49,"tag":192,"props":3420,"children":3421},{"style":235},[3422],{"type":55,"value":1582},{"type":49,"tag":192,"props":3424,"children":3425},{"style":235},[3426],{"type":55,"value":238},{"type":49,"tag":192,"props":3428,"children":3429},{"style":1998},[3430],{"type":55,"value":3431},"model",{"type":49,"tag":192,"props":3433,"children":3434},{"style":235},[3435],{"type":55,"value":253},{"type":49,"tag":192,"props":3437,"children":3438},{"style":235},[3439],{"type":55,"value":824},{"type":49,"tag":192,"props":3441,"children":3442},{"style":235},[3443],{"type":55,"value":238},{"type":49,"tag":192,"props":3445,"children":3446},{"style":204},[3447],{"type":55,"value":1668},{"type":49,"tag":192,"props":3449,"children":3450},{"style":235},[3451],{"type":55,"value":253},{"type":49,"tag":192,"props":3453,"children":3454},{"style":235},[3455],{"type":55,"value":1582},{"type":49,"tag":192,"props":3457,"children":3458},{"style":235},[3459],{"type":55,"value":238},{"type":49,"tag":192,"props":3461,"children":3462},{"style":1998},[3463],{"type":55,"value":3464},"language",{"type":49,"tag":192,"props":3466,"children":3467},{"style":235},[3468],{"type":55,"value":253},{"type":49,"tag":192,"props":3470,"children":3471},{"style":235},[3472],{"type":55,"value":824},{"type":49,"tag":192,"props":3474,"children":3475},{"style":235},[3476],{"type":55,"value":238},{"type":49,"tag":192,"props":3478,"children":3479},{"style":204},[3480],{"type":55,"value":1694},{"type":49,"tag":192,"props":3482,"children":3483},{"style":235},[3484],{"type":55,"value":253},{"type":49,"tag":192,"props":3486,"children":3487},{"style":235},[3488],{"type":55,"value":2106},{"type":49,"tag":192,"props":3490,"children":3491},{"class":194,"line":339},[3492],{"type":49,"tag":192,"props":3493,"children":3494},{"style":235},[3495],{"type":55,"value":2401},{"type":49,"tag":192,"props":3497,"children":3498},{"class":194,"line":348},[3499],{"type":49,"tag":192,"props":3500,"children":3501},{"style":235},[3502],{"type":55,"value":2122},{"type":49,"tag":96,"props":3504,"children":3506},{"id":3505},"using-squads-in-calls",[3507],{"type":55,"value":3508},"Using Squads in Calls",{"type":49,"tag":174,"props":3510,"children":3512},{"id":3511},"outbound-call-with-a-squad",[3513],{"type":55,"value":3514},"Outbound call with a squad",{"type":49,"tag":181,"props":3516,"children":3518},{"className":183,"code":3517,"language":185,"meta":186,"style":186},"curl -X POST https:\u002F\u002Fapi.vapi.ai\u002Fcall \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"squadId\": \"your-squad-id\",\n    \"phoneNumberId\": \"your-phone-number-id\",\n    \"customer\": {\n      \"number\": \"+11234567890\"\n    }\n  }'\n",[3519],{"type":49,"tag":79,"props":3520,"children":3521},{"__ignoreMap":186},[3522,3546,3573,3596,3611,3619,3627,3635,3643,3650],{"type":49,"tag":192,"props":3523,"children":3524},{"class":194,"line":195},[3525,3529,3533,3537,3542],{"type":49,"tag":192,"props":3526,"children":3527},{"style":199},[3528],{"type":55,"value":176},{"type":49,"tag":192,"props":3530,"children":3531},{"style":204},[3532],{"type":55,"value":207},{"type":49,"tag":192,"props":3534,"children":3535},{"style":204},[3536],{"type":55,"value":212},{"type":49,"tag":192,"props":3538,"children":3539},{"style":204},[3540],{"type":55,"value":3541}," https:\u002F\u002Fapi.vapi.ai\u002Fcall",{"type":49,"tag":192,"props":3543,"children":3544},{"style":220},[3545],{"type":55,"value":223},{"type":49,"tag":192,"props":3547,"children":3548},{"class":194,"line":226},[3549,3553,3557,3561,3565,3569],{"type":49,"tag":192,"props":3550,"children":3551},{"style":204},[3552],{"type":55,"value":232},{"type":49,"tag":192,"props":3554,"children":3555},{"style":235},[3556],{"type":55,"value":238},{"type":49,"tag":192,"props":3558,"children":3559},{"style":204},[3560],{"type":55,"value":243},{"type":49,"tag":192,"props":3562,"children":3563},{"style":220},[3564],{"type":55,"value":248},{"type":49,"tag":192,"props":3566,"children":3567},{"style":235},[3568],{"type":55,"value":253},{"type":49,"tag":192,"props":3570,"children":3571},{"style":220},[3572],{"type":55,"value":223},{"type":49,"tag":192,"props":3574,"children":3575},{"class":194,"line":260},[3576,3580,3584,3588,3592],{"type":49,"tag":192,"props":3577,"children":3578},{"style":204},[3579],{"type":55,"value":232},{"type":49,"tag":192,"props":3581,"children":3582},{"style":235},[3583],{"type":55,"value":238},{"type":49,"tag":192,"props":3585,"children":3586},{"style":204},[3587],{"type":55,"value":274},{"type":49,"tag":192,"props":3589,"children":3590},{"style":235},[3591],{"type":55,"value":253},{"type":49,"tag":192,"props":3593,"children":3594},{"style":220},[3595],{"type":55,"value":223},{"type":49,"tag":192,"props":3597,"children":3598},{"class":194,"line":285},[3599,3603,3607],{"type":49,"tag":192,"props":3600,"children":3601},{"style":204},[3602],{"type":55,"value":291},{"type":49,"tag":192,"props":3604,"children":3605},{"style":235},[3606],{"type":55,"value":296},{"type":49,"tag":192,"props":3608,"children":3609},{"style":204},[3610],{"type":55,"value":301},{"type":49,"tag":192,"props":3612,"children":3613},{"class":194,"line":304},[3614],{"type":49,"tag":192,"props":3615,"children":3616},{"style":204},[3617],{"type":55,"value":3618},"    \"squadId\": \"your-squad-id\",\n",{"type":49,"tag":192,"props":3620,"children":3621},{"class":194,"line":313},[3622],{"type":49,"tag":192,"props":3623,"children":3624},{"style":204},[3625],{"type":55,"value":3626},"    \"phoneNumberId\": \"your-phone-number-id\",\n",{"type":49,"tag":192,"props":3628,"children":3629},{"class":194,"line":27},[3630],{"type":49,"tag":192,"props":3631,"children":3632},{"style":204},[3633],{"type":55,"value":3634},"    \"customer\": {\n",{"type":49,"tag":192,"props":3636,"children":3637},{"class":194,"line":330},[3638],{"type":49,"tag":192,"props":3639,"children":3640},{"style":204},[3641],{"type":55,"value":3642},"      \"number\": \"+11234567890\"\n",{"type":49,"tag":192,"props":3644,"children":3645},{"class":194,"line":339},[3646],{"type":49,"tag":192,"props":3647,"children":3648},{"style":204},[3649],{"type":55,"value":2328},{"type":49,"tag":192,"props":3651,"children":3652},{"class":194,"line":348},[3653,3657],{"type":49,"tag":192,"props":3654,"children":3655},{"style":204},[3656],{"type":55,"value":698},{"type":49,"tag":192,"props":3658,"children":3659},{"style":235},[3660],{"type":55,"value":703},{"type":49,"tag":174,"props":3662,"children":3664},{"id":3663},"transient-squad-in-a-call",[3665],{"type":55,"value":3666},"Transient squad in a call",{"type":49,"tag":181,"props":3668,"children":3670},{"className":1927,"code":3669,"language":1929,"meta":186,"style":186},"{\n  \"squad\": {\n    \"members\": [\n      { \"assistant\": { \"...\" : \"...\" } },\n      { \"assistantId\": \"...\" }\n    ]\n  },\n  \"phoneNumberId\": \"phone-number-id\",\n  \"customer\": { \"number\": \"+11234567890\" }\n}\n",[3671],{"type":49,"tag":79,"props":3672,"children":3673},{"__ignoreMap":186},[3674,3681,3705,3728,3792,3831,3838,3846,3883,3941],{"type":49,"tag":192,"props":3675,"children":3676},{"class":194,"line":195},[3677],{"type":49,"tag":192,"props":3678,"children":3679},{"style":235},[3680],{"type":55,"value":301},{"type":49,"tag":192,"props":3682,"children":3683},{"class":194,"line":226},[3684,3688,3693,3697,3701],{"type":49,"tag":192,"props":3685,"children":3686},{"style":235},[3687],{"type":55,"value":1948},{"type":49,"tag":192,"props":3689,"children":3690},{"style":780},[3691],{"type":55,"value":3692},"squad",{"type":49,"tag":192,"props":3694,"children":3695},{"style":235},[3696],{"type":55,"value":253},{"type":49,"tag":192,"props":3698,"children":3699},{"style":235},[3700],{"type":55,"value":824},{"type":49,"tag":192,"props":3702,"children":3703},{"style":235},[3704],{"type":55,"value":996},{"type":49,"tag":192,"props":3706,"children":3707},{"class":194,"line":260},[3708,3712,3716,3720,3724],{"type":49,"tag":192,"props":3709,"children":3710},{"style":235},[3711],{"type":55,"value":2368},{"type":49,"tag":192,"props":3713,"children":3714},{"style":199},[3715],{"type":55,"value":1881},{"type":49,"tag":192,"props":3717,"children":3718},{"style":235},[3719],{"type":55,"value":253},{"type":49,"tag":192,"props":3721,"children":3722},{"style":235},[3723],{"type":55,"value":824},{"type":49,"tag":192,"props":3725,"children":3726},{"style":235},[3727],{"type":55,"value":971},{"type":49,"tag":192,"props":3729,"children":3730},{"class":194,"line":285},[3731,3736,3740,3744,3748,3752,3756,3760,3764,3768,3772,3776,3780,3784,3788],{"type":49,"tag":192,"props":3732,"children":3733},{"style":235},[3734],{"type":55,"value":3735},"      {",{"type":49,"tag":192,"props":3737,"children":3738},{"style":235},[3739],{"type":55,"value":238},{"type":49,"tag":192,"props":3741,"children":3742},{"style":1998},[3743],{"type":55,"value":1331},{"type":49,"tag":192,"props":3745,"children":3746},{"style":235},[3747],{"type":55,"value":253},{"type":49,"tag":192,"props":3749,"children":3750},{"style":235},[3751],{"type":55,"value":824},{"type":49,"tag":192,"props":3753,"children":3754},{"style":235},[3755],{"type":55,"value":732},{"type":49,"tag":192,"props":3757,"children":3758},{"style":235},[3759],{"type":55,"value":238},{"type":49,"tag":192,"props":3761,"children":3762},{"style":816},[3763],{"type":55,"value":2035},{"type":49,"tag":192,"props":3765,"children":3766},{"style":235},[3767],{"type":55,"value":253},{"type":49,"tag":192,"props":3769,"children":3770},{"style":235},[3771],{"type":55,"value":2044},{"type":49,"tag":192,"props":3773,"children":3774},{"style":235},[3775],{"type":55,"value":238},{"type":49,"tag":192,"props":3777,"children":3778},{"style":204},[3779],{"type":55,"value":2035},{"type":49,"tag":192,"props":3781,"children":3782},{"style":235},[3783],{"type":55,"value":253},{"type":49,"tag":192,"props":3785,"children":3786},{"style":235},[3787],{"type":55,"value":742},{"type":49,"tag":192,"props":3789,"children":3790},{"style":235},[3791],{"type":55,"value":1609},{"type":49,"tag":192,"props":3793,"children":3794},{"class":194,"line":304},[3795,3799,3803,3807,3811,3815,3819,3823,3827],{"type":49,"tag":192,"props":3796,"children":3797},{"style":235},[3798],{"type":55,"value":3735},{"type":49,"tag":192,"props":3800,"children":3801},{"style":235},[3802],{"type":55,"value":238},{"type":49,"tag":192,"props":3804,"children":3805},{"style":1998},[3806],{"type":55,"value":2080},{"type":49,"tag":192,"props":3808,"children":3809},{"style":235},[3810],{"type":55,"value":253},{"type":49,"tag":192,"props":3812,"children":3813},{"style":235},[3814],{"type":55,"value":824},{"type":49,"tag":192,"props":3816,"children":3817},{"style":235},[3818],{"type":55,"value":238},{"type":49,"tag":192,"props":3820,"children":3821},{"style":204},[3822],{"type":55,"value":2035},{"type":49,"tag":192,"props":3824,"children":3825},{"style":235},[3826],{"type":55,"value":253},{"type":49,"tag":192,"props":3828,"children":3829},{"style":235},[3830],{"type":55,"value":2106},{"type":49,"tag":192,"props":3832,"children":3833},{"class":194,"line":313},[3834],{"type":49,"tag":192,"props":3835,"children":3836},{"style":235},[3837],{"type":55,"value":689},{"type":49,"tag":192,"props":3839,"children":3840},{"class":194,"line":27},[3841],{"type":49,"tag":192,"props":3842,"children":3843},{"style":235},[3844],{"type":55,"value":3845},"  },\n",{"type":49,"tag":192,"props":3847,"children":3848},{"class":194,"line":330},[3849,3853,3858,3862,3866,3870,3875,3879],{"type":49,"tag":192,"props":3850,"children":3851},{"style":235},[3852],{"type":55,"value":1948},{"type":49,"tag":192,"props":3854,"children":3855},{"style":780},[3856],{"type":55,"value":3857},"phoneNumberId",{"type":49,"tag":192,"props":3859,"children":3860},{"style":235},[3861],{"type":55,"value":253},{"type":49,"tag":192,"props":3863,"children":3864},{"style":235},[3865],{"type":55,"value":824},{"type":49,"tag":192,"props":3867,"children":3868},{"style":235},[3869],{"type":55,"value":238},{"type":49,"tag":192,"props":3871,"children":3872},{"style":204},[3873],{"type":55,"value":3874},"phone-number-id",{"type":49,"tag":192,"props":3876,"children":3877},{"style":235},[3878],{"type":55,"value":253},{"type":49,"tag":192,"props":3880,"children":3881},{"style":235},[3882],{"type":55,"value":954},{"type":49,"tag":192,"props":3884,"children":3885},{"class":194,"line":339},[3886,3890,3895,3899,3903,3907,3911,3916,3920,3924,3928,3933,3937],{"type":49,"tag":192,"props":3887,"children":3888},{"style":235},[3889],{"type":55,"value":1948},{"type":49,"tag":192,"props":3891,"children":3892},{"style":780},[3893],{"type":55,"value":3894},"customer",{"type":49,"tag":192,"props":3896,"children":3897},{"style":235},[3898],{"type":55,"value":253},{"type":49,"tag":192,"props":3900,"children":3901},{"style":235},[3902],{"type":55,"value":824},{"type":49,"tag":192,"props":3904,"children":3905},{"style":235},[3906],{"type":55,"value":732},{"type":49,"tag":192,"props":3908,"children":3909},{"style":235},[3910],{"type":55,"value":238},{"type":49,"tag":192,"props":3912,"children":3913},{"style":199},[3914],{"type":55,"value":3915},"number",{"type":49,"tag":192,"props":3917,"children":3918},{"style":235},[3919],{"type":55,"value":253},{"type":49,"tag":192,"props":3921,"children":3922},{"style":235},[3923],{"type":55,"value":824},{"type":49,"tag":192,"props":3925,"children":3926},{"style":235},[3927],{"type":55,"value":238},{"type":49,"tag":192,"props":3929,"children":3930},{"style":204},[3931],{"type":55,"value":3932},"+11234567890",{"type":49,"tag":192,"props":3934,"children":3935},{"style":235},[3936],{"type":55,"value":253},{"type":49,"tag":192,"props":3938,"children":3939},{"style":235},[3940],{"type":55,"value":2106},{"type":49,"tag":192,"props":3942,"children":3943},{"class":194,"line":348},[3944],{"type":49,"tag":192,"props":3945,"children":3946},{"style":235},[3947],{"type":55,"value":2122},{"type":49,"tag":96,"props":3949,"children":3951},{"id":3950},"common-patterns",[3952],{"type":55,"value":3953},"Common Patterns",{"type":49,"tag":174,"props":3955,"children":3957},{"id":3956},"clinic-triage-scheduling",[3958],{"type":55,"value":3959},"Clinic Triage → Scheduling",{"type":49,"tag":181,"props":3961,"children":3963},{"className":1927,"code":3962,"language":1929,"meta":186,"style":186},"{\n  \"name\": \"Clinic Squad\",\n  \"members\": [\n    {\n      \"assistant\": {\n        \"name\": \"Triage Nurse\",\n        \"firstMessage\": \"Hello, this is the clinic. How can I help you today?\",\n        \"model\": {\n          \"provider\": \"openai\",\n          \"model\": \"gpt-4.1\",\n          \"messages\": [\n            {\n              \"role\": \"system\",\n              \"content\": \"You are a clinic triage assistant. Assess the caller's needs: if they need an appointment, transfer to scheduling. If it's urgent, transfer to the nurse line.\"\n            }\n          ],\n          \"tools\": [\n            {\n              \"type\": \"handoff\",\n              \"destinations\": [\n                {\n                  \"type\": \"assistant\",\n                  \"assistantId\": \"scheduling-assistant-id\",\n                  \"description\": \"Transfer when caller wants to book, reschedule, or cancel an appointment\"\n                },\n                {\n                  \"type\": \"assistant\",\n                  \"assistantId\": \"nurse-assistant-id\",\n                  \"description\": \"Transfer for urgent medical questions or symptoms\"\n                }\n              ]\n            }\n          ]\n        },\n        \"voice\": { \"provider\": \"vapi\", \"voiceId\": \"Lily\", \"version\": 2 }\n      }\n    },\n    { \"assistantId\": \"scheduling-assistant-id\" },\n    { \"assistantId\": \"nurse-assistant-id\" }\n  ]\n}\n",[3964],{"type":49,"tag":79,"props":3965,"children":3966},{"__ignoreMap":186},[3967,3974,4010,4033,4040,4063,4099,4135,4158,4194,4229,4253,4260,4298,4331,4339,4347,4371,4378,4413,4436,4443,4479,4515,4547,4554,4561,4596,4632,4664,4672,4680,4687,4695,4702,4813,4820,4827,4866,4905,4912],{"type":49,"tag":192,"props":3968,"children":3969},{"class":194,"line":195},[3970],{"type":49,"tag":192,"props":3971,"children":3972},{"style":235},[3973],{"type":55,"value":301},{"type":49,"tag":192,"props":3975,"children":3976},{"class":194,"line":226},[3977,3981,3985,3989,3993,3997,4002,4006],{"type":49,"tag":192,"props":3978,"children":3979},{"style":235},[3980],{"type":55,"value":1948},{"type":49,"tag":192,"props":3982,"children":3983},{"style":780},[3984],{"type":55,"value":2001},{"type":49,"tag":192,"props":3986,"children":3987},{"style":235},[3988],{"type":55,"value":253},{"type":49,"tag":192,"props":3990,"children":3991},{"style":235},[3992],{"type":55,"value":824},{"type":49,"tag":192,"props":3994,"children":3995},{"style":235},[3996],{"type":55,"value":238},{"type":49,"tag":192,"props":3998,"children":3999},{"style":204},[4000],{"type":55,"value":4001},"Clinic Squad",{"type":49,"tag":192,"props":4003,"children":4004},{"style":235},[4005],{"type":55,"value":253},{"type":49,"tag":192,"props":4007,"children":4008},{"style":235},[4009],{"type":55,"value":954},{"type":49,"tag":192,"props":4011,"children":4012},{"class":194,"line":260},[4013,4017,4021,4025,4029],{"type":49,"tag":192,"props":4014,"children":4015},{"style":235},[4016],{"type":55,"value":1948},{"type":49,"tag":192,"props":4018,"children":4019},{"style":780},[4020],{"type":55,"value":1881},{"type":49,"tag":192,"props":4022,"children":4023},{"style":235},[4024],{"type":55,"value":253},{"type":49,"tag":192,"props":4026,"children":4027},{"style":235},[4028],{"type":55,"value":824},{"type":49,"tag":192,"props":4030,"children":4031},{"style":235},[4032],{"type":55,"value":971},{"type":49,"tag":192,"props":4034,"children":4035},{"class":194,"line":285},[4036],{"type":49,"tag":192,"props":4037,"children":4038},{"style":235},[4039],{"type":55,"value":979},{"type":49,"tag":192,"props":4041,"children":4042},{"class":194,"line":304},[4043,4047,4051,4055,4059],{"type":49,"tag":192,"props":4044,"children":4045},{"style":235},[4046],{"type":55,"value":2222},{"type":49,"tag":192,"props":4048,"children":4049},{"style":199},[4050],{"type":55,"value":1331},{"type":49,"tag":192,"props":4052,"children":4053},{"style":235},[4054],{"type":55,"value":253},{"type":49,"tag":192,"props":4056,"children":4057},{"style":235},[4058],{"type":55,"value":824},{"type":49,"tag":192,"props":4060,"children":4061},{"style":235},[4062],{"type":55,"value":996},{"type":49,"tag":192,"props":4064,"children":4065},{"class":194,"line":313},[4066,4070,4074,4078,4082,4086,4091,4095],{"type":49,"tag":192,"props":4067,"children":4068},{"style":235},[4069],{"type":55,"value":2777},{"type":49,"tag":192,"props":4071,"children":4072},{"style":1998},[4073],{"type":55,"value":2001},{"type":49,"tag":192,"props":4075,"children":4076},{"style":235},[4077],{"type":55,"value":253},{"type":49,"tag":192,"props":4079,"children":4080},{"style":235},[4081],{"type":55,"value":824},{"type":49,"tag":192,"props":4083,"children":4084},{"style":235},[4085],{"type":55,"value":238},{"type":49,"tag":192,"props":4087,"children":4088},{"style":204},[4089],{"type":55,"value":4090},"Triage Nurse",{"type":49,"tag":192,"props":4092,"children":4093},{"style":235},[4094],{"type":55,"value":253},{"type":49,"tag":192,"props":4096,"children":4097},{"style":235},[4098],{"type":55,"value":954},{"type":49,"tag":192,"props":4100,"children":4101},{"class":194,"line":27},[4102,4106,4110,4114,4118,4122,4127,4131],{"type":49,"tag":192,"props":4103,"children":4104},{"style":235},[4105],{"type":55,"value":2777},{"type":49,"tag":192,"props":4107,"children":4108},{"style":1998},[4109],{"type":55,"value":2620},{"type":49,"tag":192,"props":4111,"children":4112},{"style":235},[4113],{"type":55,"value":253},{"type":49,"tag":192,"props":4115,"children":4116},{"style":235},[4117],{"type":55,"value":824},{"type":49,"tag":192,"props":4119,"children":4120},{"style":235},[4121],{"type":55,"value":238},{"type":49,"tag":192,"props":4123,"children":4124},{"style":204},[4125],{"type":55,"value":4126},"Hello, this is the clinic. How can I help you today?",{"type":49,"tag":192,"props":4128,"children":4129},{"style":235},[4130],{"type":55,"value":253},{"type":49,"tag":192,"props":4132,"children":4133},{"style":235},[4134],{"type":55,"value":954},{"type":49,"tag":192,"props":4136,"children":4137},{"class":194,"line":330},[4138,4142,4146,4150,4154],{"type":49,"tag":192,"props":4139,"children":4140},{"style":235},[4141],{"type":55,"value":2777},{"type":49,"tag":192,"props":4143,"children":4144},{"style":1998},[4145],{"type":55,"value":3431},{"type":49,"tag":192,"props":4147,"children":4148},{"style":235},[4149],{"type":55,"value":253},{"type":49,"tag":192,"props":4151,"children":4152},{"style":235},[4153],{"type":55,"value":824},{"type":49,"tag":192,"props":4155,"children":4156},{"style":235},[4157],{"type":55,"value":996},{"type":49,"tag":192,"props":4159,"children":4160},{"class":194,"line":339},[4161,4166,4170,4174,4178,4182,4186,4190],{"type":49,"tag":192,"props":4162,"children":4163},{"style":235},[4164],{"type":55,"value":4165},"          \"",{"type":49,"tag":192,"props":4167,"children":4168},{"style":816},[4169],{"type":55,"value":2524},{"type":49,"tag":192,"props":4171,"children":4172},{"style":235},[4173],{"type":55,"value":253},{"type":49,"tag":192,"props":4175,"children":4176},{"style":235},[4177],{"type":55,"value":824},{"type":49,"tag":192,"props":4179,"children":4180},{"style":235},[4181],{"type":55,"value":238},{"type":49,"tag":192,"props":4183,"children":4184},{"style":204},[4185],{"type":55,"value":1090},{"type":49,"tag":192,"props":4187,"children":4188},{"style":235},[4189],{"type":55,"value":253},{"type":49,"tag":192,"props":4191,"children":4192},{"style":235},[4193],{"type":55,"value":954},{"type":49,"tag":192,"props":4195,"children":4196},{"class":194,"line":348},[4197,4201,4205,4209,4213,4217,4221,4225],{"type":49,"tag":192,"props":4198,"children":4199},{"style":235},[4200],{"type":55,"value":4165},{"type":49,"tag":192,"props":4202,"children":4203},{"style":816},[4204],{"type":55,"value":3431},{"type":49,"tag":192,"props":4206,"children":4207},{"style":235},[4208],{"type":55,"value":253},{"type":49,"tag":192,"props":4210,"children":4211},{"style":235},[4212],{"type":55,"value":824},{"type":49,"tag":192,"props":4214,"children":4215},{"style":235},[4216],{"type":55,"value":238},{"type":49,"tag":192,"props":4218,"children":4219},{"style":204},[4220],{"type":55,"value":1119},{"type":49,"tag":192,"props":4222,"children":4223},{"style":235},[4224],{"type":55,"value":253},{"type":49,"tag":192,"props":4226,"children":4227},{"style":235},[4228],{"type":55,"value":954},{"type":49,"tag":192,"props":4230,"children":4231},{"class":194,"line":357},[4232,4236,4241,4245,4249],{"type":49,"tag":192,"props":4233,"children":4234},{"style":235},[4235],{"type":55,"value":4165},{"type":49,"tag":192,"props":4237,"children":4238},{"style":816},[4239],{"type":55,"value":4240},"messages",{"type":49,"tag":192,"props":4242,"children":4243},{"style":235},[4244],{"type":55,"value":253},{"type":49,"tag":192,"props":4246,"children":4247},{"style":235},[4248],{"type":55,"value":824},{"type":49,"tag":192,"props":4250,"children":4251},{"style":235},[4252],{"type":55,"value":971},{"type":49,"tag":192,"props":4254,"children":4255},{"class":194,"line":366},[4256],{"type":49,"tag":192,"props":4257,"children":4258},{"style":235},[4259],{"type":55,"value":1151},{"type":49,"tag":192,"props":4261,"children":4262},{"class":194,"line":375},[4263,4268,4274,4278,4282,4286,4290,4294],{"type":49,"tag":192,"props":4264,"children":4265},{"style":235},[4266],{"type":55,"value":4267},"              \"",{"type":49,"tag":192,"props":4269,"children":4271},{"style":4270},"--shiki-light:#916B53;--shiki-default:#916B53;--shiki-dark:#916B53",[4272],{"type":55,"value":4273},"role",{"type":49,"tag":192,"props":4275,"children":4276},{"style":235},[4277],{"type":55,"value":253},{"type":49,"tag":192,"props":4279,"children":4280},{"style":235},[4281],{"type":55,"value":824},{"type":49,"tag":192,"props":4283,"children":4284},{"style":235},[4285],{"type":55,"value":238},{"type":49,"tag":192,"props":4287,"children":4288},{"style":204},[4289],{"type":55,"value":1172},{"type":49,"tag":192,"props":4291,"children":4292},{"style":235},[4293],{"type":55,"value":253},{"type":49,"tag":192,"props":4295,"children":4296},{"style":235},[4297],{"type":55,"value":954},{"type":49,"tag":192,"props":4299,"children":4300},{"class":194,"line":384},[4301,4305,4310,4314,4318,4322,4327],{"type":49,"tag":192,"props":4302,"children":4303},{"style":235},[4304],{"type":55,"value":4267},{"type":49,"tag":192,"props":4306,"children":4307},{"style":4270},[4308],{"type":55,"value":4309},"content",{"type":49,"tag":192,"props":4311,"children":4312},{"style":235},[4313],{"type":55,"value":253},{"type":49,"tag":192,"props":4315,"children":4316},{"style":235},[4317],{"type":55,"value":824},{"type":49,"tag":192,"props":4319,"children":4320},{"style":235},[4321],{"type":55,"value":238},{"type":49,"tag":192,"props":4323,"children":4324},{"style":204},[4325],{"type":55,"value":4326},"You are a clinic triage assistant. Assess the caller's needs: if they need an appointment, transfer to scheduling. If it's urgent, transfer to the nurse line.",{"type":49,"tag":192,"props":4328,"children":4329},{"style":235},[4330],{"type":55,"value":2320},{"type":49,"tag":192,"props":4332,"children":4333},{"class":194,"line":393},[4334],{"type":49,"tag":192,"props":4335,"children":4336},{"style":235},[4337],{"type":55,"value":4338},"            }\n",{"type":49,"tag":192,"props":4340,"children":4341},{"class":194,"line":402},[4342],{"type":49,"tag":192,"props":4343,"children":4344},{"style":235},[4345],{"type":55,"value":4346},"          ],\n",{"type":49,"tag":192,"props":4348,"children":4349},{"class":194,"line":411},[4350,4354,4359,4363,4367],{"type":49,"tag":192,"props":4351,"children":4352},{"style":235},[4353],{"type":55,"value":4165},{"type":49,"tag":192,"props":4355,"children":4356},{"style":816},[4357],{"type":55,"value":4358},"tools",{"type":49,"tag":192,"props":4360,"children":4361},{"style":235},[4362],{"type":55,"value":253},{"type":49,"tag":192,"props":4364,"children":4365},{"style":235},[4366],{"type":55,"value":824},{"type":49,"tag":192,"props":4368,"children":4369},{"style":235},[4370],{"type":55,"value":971},{"type":49,"tag":192,"props":4372,"children":4373},{"class":194,"line":420},[4374],{"type":49,"tag":192,"props":4375,"children":4376},{"style":235},[4377],{"type":55,"value":1151},{"type":49,"tag":192,"props":4379,"children":4380},{"class":194,"line":429},[4381,4385,4389,4393,4397,4401,4405,4409],{"type":49,"tag":192,"props":4382,"children":4383},{"style":235},[4384],{"type":55,"value":4267},{"type":49,"tag":192,"props":4386,"children":4387},{"style":4270},[4388],{"type":55,"value":2159},{"type":49,"tag":192,"props":4390,"children":4391},{"style":235},[4392],{"type":55,"value":253},{"type":49,"tag":192,"props":4394,"children":4395},{"style":235},[4396],{"type":55,"value":824},{"type":49,"tag":192,"props":4398,"children":4399},{"style":235},[4400],{"type":55,"value":238},{"type":49,"tag":192,"props":4402,"children":4403},{"style":204},[4404],{"type":55,"value":1278},{"type":49,"tag":192,"props":4406,"children":4407},{"style":235},[4408],{"type":55,"value":253},{"type":49,"tag":192,"props":4410,"children":4411},{"style":235},[4412],{"type":55,"value":954},{"type":49,"tag":192,"props":4414,"children":4415},{"class":194,"line":438},[4416,4420,4424,4428,4432],{"type":49,"tag":192,"props":4417,"children":4418},{"style":235},[4419],{"type":55,"value":4267},{"type":49,"tag":192,"props":4421,"children":4422},{"style":4270},[4423],{"type":55,"value":2195},{"type":49,"tag":192,"props":4425,"children":4426},{"style":235},[4427],{"type":55,"value":253},{"type":49,"tag":192,"props":4429,"children":4430},{"style":235},[4431],{"type":55,"value":824},{"type":49,"tag":192,"props":4433,"children":4434},{"style":235},[4435],{"type":55,"value":971},{"type":49,"tag":192,"props":4437,"children":4438},{"class":194,"line":447},[4439],{"type":49,"tag":192,"props":4440,"children":4441},{"style":235},[4442],{"type":55,"value":1310},{"type":49,"tag":192,"props":4444,"children":4445},{"class":194,"line":455},[4446,4451,4455,4459,4463,4467,4471,4475],{"type":49,"tag":192,"props":4447,"children":4448},{"style":235},[4449],{"type":55,"value":4450},"                  \"",{"type":49,"tag":192,"props":4452,"children":4453},{"style":801},[4454],{"type":55,"value":2159},{"type":49,"tag":192,"props":4456,"children":4457},{"style":235},[4458],{"type":55,"value":253},{"type":49,"tag":192,"props":4460,"children":4461},{"style":235},[4462],{"type":55,"value":824},{"type":49,"tag":192,"props":4464,"children":4465},{"style":235},[4466],{"type":55,"value":238},{"type":49,"tag":192,"props":4468,"children":4469},{"style":204},[4470],{"type":55,"value":1331},{"type":49,"tag":192,"props":4472,"children":4473},{"style":235},[4474],{"type":55,"value":253},{"type":49,"tag":192,"props":4476,"children":4477},{"style":235},[4478],{"type":55,"value":954},{"type":49,"tag":192,"props":4480,"children":4481},{"class":194,"line":464},[4482,4486,4490,4494,4498,4502,4507,4511],{"type":49,"tag":192,"props":4483,"children":4484},{"style":235},[4485],{"type":55,"value":4450},{"type":49,"tag":192,"props":4487,"children":4488},{"style":801},[4489],{"type":55,"value":2080},{"type":49,"tag":192,"props":4491,"children":4492},{"style":235},[4493],{"type":55,"value":253},{"type":49,"tag":192,"props":4495,"children":4496},{"style":235},[4497],{"type":55,"value":824},{"type":49,"tag":192,"props":4499,"children":4500},{"style":235},[4501],{"type":55,"value":238},{"type":49,"tag":192,"props":4503,"children":4504},{"style":204},[4505],{"type":55,"value":4506},"scheduling-assistant-id",{"type":49,"tag":192,"props":4508,"children":4509},{"style":235},[4510],{"type":55,"value":253},{"type":49,"tag":192,"props":4512,"children":4513},{"style":235},[4514],{"type":55,"value":954},{"type":49,"tag":192,"props":4516,"children":4517},{"class":194,"line":473},[4518,4522,4526,4530,4534,4538,4543],{"type":49,"tag":192,"props":4519,"children":4520},{"style":235},[4521],{"type":55,"value":4450},{"type":49,"tag":192,"props":4523,"children":4524},{"style":801},[4525],{"type":55,"value":2298},{"type":49,"tag":192,"props":4527,"children":4528},{"style":235},[4529],{"type":55,"value":253},{"type":49,"tag":192,"props":4531,"children":4532},{"style":235},[4533],{"type":55,"value":824},{"type":49,"tag":192,"props":4535,"children":4536},{"style":235},[4537],{"type":55,"value":238},{"type":49,"tag":192,"props":4539,"children":4540},{"style":204},[4541],{"type":55,"value":4542},"Transfer when caller wants to book, reschedule, or cancel an appointment",{"type":49,"tag":192,"props":4544,"children":4545},{"style":235},[4546],{"type":55,"value":2320},{"type":49,"tag":192,"props":4548,"children":4549},{"class":194,"line":482},[4550],{"type":49,"tag":192,"props":4551,"children":4552},{"style":235},[4553],{"type":55,"value":1405},{"type":49,"tag":192,"props":4555,"children":4556},{"class":194,"line":491},[4557],{"type":49,"tag":192,"props":4558,"children":4559},{"style":235},[4560],{"type":55,"value":1310},{"type":49,"tag":192,"props":4562,"children":4563},{"class":194,"line":500},[4564,4568,4572,4576,4580,4584,4588,4592],{"type":49,"tag":192,"props":4565,"children":4566},{"style":235},[4567],{"type":55,"value":4450},{"type":49,"tag":192,"props":4569,"children":4570},{"style":801},[4571],{"type":55,"value":2159},{"type":49,"tag":192,"props":4573,"children":4574},{"style":235},[4575],{"type":55,"value":253},{"type":49,"tag":192,"props":4577,"children":4578},{"style":235},[4579],{"type":55,"value":824},{"type":49,"tag":192,"props":4581,"children":4582},{"style":235},[4583],{"type":55,"value":238},{"type":49,"tag":192,"props":4585,"children":4586},{"style":204},[4587],{"type":55,"value":1331},{"type":49,"tag":192,"props":4589,"children":4590},{"style":235},[4591],{"type":55,"value":253},{"type":49,"tag":192,"props":4593,"children":4594},{"style":235},[4595],{"type":55,"value":954},{"type":49,"tag":192,"props":4597,"children":4598},{"class":194,"line":509},[4599,4603,4607,4611,4615,4619,4624,4628],{"type":49,"tag":192,"props":4600,"children":4601},{"style":235},[4602],{"type":55,"value":4450},{"type":49,"tag":192,"props":4604,"children":4605},{"style":801},[4606],{"type":55,"value":2080},{"type":49,"tag":192,"props":4608,"children":4609},{"style":235},[4610],{"type":55,"value":253},{"type":49,"tag":192,"props":4612,"children":4613},{"style":235},[4614],{"type":55,"value":824},{"type":49,"tag":192,"props":4616,"children":4617},{"style":235},[4618],{"type":55,"value":238},{"type":49,"tag":192,"props":4620,"children":4621},{"style":204},[4622],{"type":55,"value":4623},"nurse-assistant-id",{"type":49,"tag":192,"props":4625,"children":4626},{"style":235},[4627],{"type":55,"value":253},{"type":49,"tag":192,"props":4629,"children":4630},{"style":235},[4631],{"type":55,"value":954},{"type":49,"tag":192,"props":4633,"children":4634},{"class":194,"line":518},[4635,4639,4643,4647,4651,4655,4660],{"type":49,"tag":192,"props":4636,"children":4637},{"style":235},[4638],{"type":55,"value":4450},{"type":49,"tag":192,"props":4640,"children":4641},{"style":801},[4642],{"type":55,"value":2298},{"type":49,"tag":192,"props":4644,"children":4645},{"style":235},[4646],{"type":55,"value":253},{"type":49,"tag":192,"props":4648,"children":4649},{"style":235},[4650],{"type":55,"value":824},{"type":49,"tag":192,"props":4652,"children":4653},{"style":235},[4654],{"type":55,"value":238},{"type":49,"tag":192,"props":4656,"children":4657},{"style":204},[4658],{"type":55,"value":4659},"Transfer for urgent medical questions or symptoms",{"type":49,"tag":192,"props":4661,"children":4662},{"style":235},[4663],{"type":55,"value":2320},{"type":49,"tag":192,"props":4665,"children":4666},{"class":194,"line":526},[4667],{"type":49,"tag":192,"props":4668,"children":4669},{"style":235},[4670],{"type":55,"value":4671},"                }\n",{"type":49,"tag":192,"props":4673,"children":4674},{"class":194,"line":534},[4675],{"type":49,"tag":192,"props":4676,"children":4677},{"style":235},[4678],{"type":55,"value":4679},"              ]\n",{"type":49,"tag":192,"props":4681,"children":4682},{"class":194,"line":543},[4683],{"type":49,"tag":192,"props":4684,"children":4685},{"style":235},[4686],{"type":55,"value":4338},{"type":49,"tag":192,"props":4688,"children":4689},{"class":194,"line":552},[4690],{"type":49,"tag":192,"props":4691,"children":4692},{"style":235},[4693],{"type":55,"value":4694},"          ]\n",{"type":49,"tag":192,"props":4696,"children":4697},{"class":194,"line":561},[4698],{"type":49,"tag":192,"props":4699,"children":4700},{"style":235},[4701],{"type":55,"value":1540},{"type":49,"tag":192,"props":4703,"children":4704},{"class":194,"line":570},[4705,4709,4713,4717,4721,4725,4729,4733,4737,4741,4745,4749,4753,4757,4761,4765,4769,4773,4777,4781,4785,4789,4793,4797,4801,4805,4809],{"type":49,"tag":192,"props":4706,"children":4707},{"style":235},[4708],{"type":55,"value":2777},{"type":49,"tag":192,"props":4710,"children":4711},{"style":1998},[4712],{"type":55,"value":19},{"type":49,"tag":192,"props":4714,"children":4715},{"style":235},[4716],{"type":55,"value":253},{"type":49,"tag":192,"props":4718,"children":4719},{"style":235},[4720],{"type":55,"value":824},{"type":49,"tag":192,"props":4722,"children":4723},{"style":235},[4724],{"type":55,"value":732},{"type":49,"tag":192,"props":4726,"children":4727},{"style":235},[4728],{"type":55,"value":238},{"type":49,"tag":192,"props":4730,"children":4731},{"style":816},[4732],{"type":55,"value":2524},{"type":49,"tag":192,"props":4734,"children":4735},{"style":235},[4736],{"type":55,"value":253},{"type":49,"tag":192,"props":4738,"children":4739},{"style":235},[4740],{"type":55,"value":824},{"type":49,"tag":192,"props":4742,"children":4743},{"style":235},[4744],{"type":55,"value":238},{"type":49,"tag":192,"props":4746,"children":4747},{"style":204},[4748],{"type":55,"value":8},{"type":49,"tag":192,"props":4750,"children":4751},{"style":235},[4752],{"type":55,"value":253},{"type":49,"tag":192,"props":4754,"children":4755},{"style":235},[4756],{"type":55,"value":1582},{"type":49,"tag":192,"props":4758,"children":4759},{"style":235},[4760],{"type":55,"value":238},{"type":49,"tag":192,"props":4762,"children":4763},{"style":816},[4764],{"type":55,"value":2557},{"type":49,"tag":192,"props":4766,"children":4767},{"style":235},[4768],{"type":55,"value":253},{"type":49,"tag":192,"props":4770,"children":4771},{"style":235},[4772],{"type":55,"value":824},{"type":49,"tag":192,"props":4774,"children":4775},{"style":235},[4776],{"type":55,"value":238},{"type":49,"tag":192,"props":4778,"children":4779},{"style":204},[4780],{"type":55,"value":1600},{"type":49,"tag":192,"props":4782,"children":4783},{"style":235},[4784],{"type":55,"value":253},{"type":49,"tag":192,"props":4786,"children":4787},{"style":235},[4788],{"type":55,"value":1582},{"type":49,"tag":192,"props":4790,"children":4791},{"style":235},[4792],{"type":55,"value":238},{"type":49,"tag":192,"props":4794,"children":4795},{"style":816},[4796],{"type":55,"value":2591},{"type":49,"tag":192,"props":4798,"children":4799},{"style":235},[4800],{"type":55,"value":253},{"type":49,"tag":192,"props":4802,"children":4803},{"style":235},[4804],{"type":55,"value":824},{"type":49,"tag":192,"props":4806,"children":4807},{"style":1998},[4808],{"type":55,"value":2604},{"type":49,"tag":192,"props":4810,"children":4811},{"style":235},[4812],{"type":55,"value":2106},{"type":49,"tag":192,"props":4814,"children":4815},{"class":194,"line":578},[4816],{"type":49,"tag":192,"props":4817,"children":4818},{"style":235},[4819],{"type":55,"value":680},{"type":49,"tag":192,"props":4821,"children":4822},{"class":194,"line":587},[4823],{"type":49,"tag":192,"props":4824,"children":4825},{"style":235},[4826],{"type":55,"value":1717},{"type":49,"tag":192,"props":4828,"children":4829},{"class":194,"line":596},[4830,4834,4838,4842,4846,4850,4854,4858,4862],{"type":49,"tag":192,"props":4831,"children":4832},{"style":235},[4833],{"type":55,"value":1725},{"type":49,"tag":192,"props":4835,"children":4836},{"style":235},[4837],{"type":55,"value":238},{"type":49,"tag":192,"props":4839,"children":4840},{"style":199},[4841],{"type":55,"value":2080},{"type":49,"tag":192,"props":4843,"children":4844},{"style":235},[4845],{"type":55,"value":253},{"type":49,"tag":192,"props":4847,"children":4848},{"style":235},[4849],{"type":55,"value":824},{"type":49,"tag":192,"props":4851,"children":4852},{"style":235},[4853],{"type":55,"value":238},{"type":49,"tag":192,"props":4855,"children":4856},{"style":204},[4857],{"type":55,"value":4506},{"type":49,"tag":192,"props":4859,"children":4860},{"style":235},[4861],{"type":55,"value":253},{"type":49,"tag":192,"props":4863,"children":4864},{"style":235},[4865],{"type":55,"value":1609},{"type":49,"tag":192,"props":4867,"children":4868},{"class":194,"line":605},[4869,4873,4877,4881,4885,4889,4893,4897,4901],{"type":49,"tag":192,"props":4870,"children":4871},{"style":235},[4872],{"type":55,"value":1725},{"type":49,"tag":192,"props":4874,"children":4875},{"style":235},[4876],{"type":55,"value":238},{"type":49,"tag":192,"props":4878,"children":4879},{"style":199},[4880],{"type":55,"value":2080},{"type":49,"tag":192,"props":4882,"children":4883},{"style":235},[4884],{"type":55,"value":253},{"type":49,"tag":192,"props":4886,"children":4887},{"style":235},[4888],{"type":55,"value":824},{"type":49,"tag":192,"props":4890,"children":4891},{"style":235},[4892],{"type":55,"value":238},{"type":49,"tag":192,"props":4894,"children":4895},{"style":204},[4896],{"type":55,"value":4623},{"type":49,"tag":192,"props":4898,"children":4899},{"style":235},[4900],{"type":55,"value":253},{"type":49,"tag":192,"props":4902,"children":4903},{"style":235},[4904],{"type":55,"value":2106},{"type":49,"tag":192,"props":4906,"children":4907},{"class":194,"line":614},[4908],{"type":49,"tag":192,"props":4909,"children":4910},{"style":235},[4911],{"type":55,"value":2114},{"type":49,"tag":192,"props":4913,"children":4914},{"class":194,"line":623},[4915],{"type":49,"tag":192,"props":4916,"children":4917},{"style":235},[4918],{"type":55,"value":2122},{"type":49,"tag":174,"props":4920,"children":4922},{"id":4921},"e-commerce-sales-support-returns",[4923],{"type":55,"value":4924},"E-commerce: Sales → Support → Returns",{"type":49,"tag":181,"props":4926,"children":4928},{"className":1927,"code":4927,"language":1929,"meta":186,"style":186},"{\n  \"name\": \"E-commerce Squad\",\n  \"members\": [\n    {\n      \"assistant\": {\n        \"name\": \"Sales Agent\",\n        \"firstMessage\": \"Welcome to our store! Are you looking to make a purchase today?\",\n        \"model\": {\n          \"provider\": \"openai\",\n          \"model\": \"gpt-4.1\",\n          \"messages\": [\n            { \"role\": \"system\", \"content\": \"You are a sales assistant. Help customers find products and make purchases. Transfer to support for order issues or returns.\" }\n          ],\n          \"tools\": [\n            {\n              \"type\": \"handoff\",\n              \"destinations\": [\n                { \"type\": \"assistant\", \"assistantId\": \"support-id\", \"description\": \"Transfer for order status, shipping, or account issues\" },\n                { \"type\": \"assistant\", \"assistantId\": \"returns-id\", \"description\": \"Transfer for returns, refunds, or exchanges\" }\n              ]\n            }\n          ]\n        }\n      }\n    },\n    { \"assistantId\": \"support-id\" },\n    { \"assistantId\": \"returns-id\" }\n  ]\n}\n",[4929],{"type":49,"tag":79,"props":4930,"children":4931},{"__ignoreMap":186},[4932,4939,4975,4998,5005,5028,5064,5100,5123,5158,5193,5216,5289,5296,5319,5326,5361,5384,5490,5595,5602,5609,5616,5623,5630,5637,5676,5715,5722],{"type":49,"tag":192,"props":4933,"children":4934},{"class":194,"line":195},[4935],{"type":49,"tag":192,"props":4936,"children":4937},{"style":235},[4938],{"type":55,"value":301},{"type":49,"tag":192,"props":4940,"children":4941},{"class":194,"line":226},[4942,4946,4950,4954,4958,4962,4967,4971],{"type":49,"tag":192,"props":4943,"children":4944},{"style":235},[4945],{"type":55,"value":1948},{"type":49,"tag":192,"props":4947,"children":4948},{"style":780},[4949],{"type":55,"value":2001},{"type":49,"tag":192,"props":4951,"children":4952},{"style":235},[4953],{"type":55,"value":253},{"type":49,"tag":192,"props":4955,"children":4956},{"style":235},[4957],{"type":55,"value":824},{"type":49,"tag":192,"props":4959,"children":4960},{"style":235},[4961],{"type":55,"value":238},{"type":49,"tag":192,"props":4963,"children":4964},{"style":204},[4965],{"type":55,"value":4966},"E-commerce Squad",{"type":49,"tag":192,"props":4968,"children":4969},{"style":235},[4970],{"type":55,"value":253},{"type":49,"tag":192,"props":4972,"children":4973},{"style":235},[4974],{"type":55,"value":954},{"type":49,"tag":192,"props":4976,"children":4977},{"class":194,"line":260},[4978,4982,4986,4990,4994],{"type":49,"tag":192,"props":4979,"children":4980},{"style":235},[4981],{"type":55,"value":1948},{"type":49,"tag":192,"props":4983,"children":4984},{"style":780},[4985],{"type":55,"value":1881},{"type":49,"tag":192,"props":4987,"children":4988},{"style":235},[4989],{"type":55,"value":253},{"type":49,"tag":192,"props":4991,"children":4992},{"style":235},[4993],{"type":55,"value":824},{"type":49,"tag":192,"props":4995,"children":4996},{"style":235},[4997],{"type":55,"value":971},{"type":49,"tag":192,"props":4999,"children":5000},{"class":194,"line":285},[5001],{"type":49,"tag":192,"props":5002,"children":5003},{"style":235},[5004],{"type":55,"value":979},{"type":49,"tag":192,"props":5006,"children":5007},{"class":194,"line":304},[5008,5012,5016,5020,5024],{"type":49,"tag":192,"props":5009,"children":5010},{"style":235},[5011],{"type":55,"value":2222},{"type":49,"tag":192,"props":5013,"children":5014},{"style":199},[5015],{"type":55,"value":1331},{"type":49,"tag":192,"props":5017,"children":5018},{"style":235},[5019],{"type":55,"value":253},{"type":49,"tag":192,"props":5021,"children":5022},{"style":235},[5023],{"type":55,"value":824},{"type":49,"tag":192,"props":5025,"children":5026},{"style":235},[5027],{"type":55,"value":996},{"type":49,"tag":192,"props":5029,"children":5030},{"class":194,"line":313},[5031,5035,5039,5043,5047,5051,5056,5060],{"type":49,"tag":192,"props":5032,"children":5033},{"style":235},[5034],{"type":55,"value":2777},{"type":49,"tag":192,"props":5036,"children":5037},{"style":1998},[5038],{"type":55,"value":2001},{"type":49,"tag":192,"props":5040,"children":5041},{"style":235},[5042],{"type":55,"value":253},{"type":49,"tag":192,"props":5044,"children":5045},{"style":235},[5046],{"type":55,"value":824},{"type":49,"tag":192,"props":5048,"children":5049},{"style":235},[5050],{"type":55,"value":238},{"type":49,"tag":192,"props":5052,"children":5053},{"style":204},[5054],{"type":55,"value":5055},"Sales Agent",{"type":49,"tag":192,"props":5057,"children":5058},{"style":235},[5059],{"type":55,"value":253},{"type":49,"tag":192,"props":5061,"children":5062},{"style":235},[5063],{"type":55,"value":954},{"type":49,"tag":192,"props":5065,"children":5066},{"class":194,"line":27},[5067,5071,5075,5079,5083,5087,5092,5096],{"type":49,"tag":192,"props":5068,"children":5069},{"style":235},[5070],{"type":55,"value":2777},{"type":49,"tag":192,"props":5072,"children":5073},{"style":1998},[5074],{"type":55,"value":2620},{"type":49,"tag":192,"props":5076,"children":5077},{"style":235},[5078],{"type":55,"value":253},{"type":49,"tag":192,"props":5080,"children":5081},{"style":235},[5082],{"type":55,"value":824},{"type":49,"tag":192,"props":5084,"children":5085},{"style":235},[5086],{"type":55,"value":238},{"type":49,"tag":192,"props":5088,"children":5089},{"style":204},[5090],{"type":55,"value":5091},"Welcome to our store! Are you looking to make a purchase today?",{"type":49,"tag":192,"props":5093,"children":5094},{"style":235},[5095],{"type":55,"value":253},{"type":49,"tag":192,"props":5097,"children":5098},{"style":235},[5099],{"type":55,"value":954},{"type":49,"tag":192,"props":5101,"children":5102},{"class":194,"line":330},[5103,5107,5111,5115,5119],{"type":49,"tag":192,"props":5104,"children":5105},{"style":235},[5106],{"type":55,"value":2777},{"type":49,"tag":192,"props":5108,"children":5109},{"style":1998},[5110],{"type":55,"value":3431},{"type":49,"tag":192,"props":5112,"children":5113},{"style":235},[5114],{"type":55,"value":253},{"type":49,"tag":192,"props":5116,"children":5117},{"style":235},[5118],{"type":55,"value":824},{"type":49,"tag":192,"props":5120,"children":5121},{"style":235},[5122],{"type":55,"value":996},{"type":49,"tag":192,"props":5124,"children":5125},{"class":194,"line":339},[5126,5130,5134,5138,5142,5146,5150,5154],{"type":49,"tag":192,"props":5127,"children":5128},{"style":235},[5129],{"type":55,"value":4165},{"type":49,"tag":192,"props":5131,"children":5132},{"style":816},[5133],{"type":55,"value":2524},{"type":49,"tag":192,"props":5135,"children":5136},{"style":235},[5137],{"type":55,"value":253},{"type":49,"tag":192,"props":5139,"children":5140},{"style":235},[5141],{"type":55,"value":824},{"type":49,"tag":192,"props":5143,"children":5144},{"style":235},[5145],{"type":55,"value":238},{"type":49,"tag":192,"props":5147,"children":5148},{"style":204},[5149],{"type":55,"value":1090},{"type":49,"tag":192,"props":5151,"children":5152},{"style":235},[5153],{"type":55,"value":253},{"type":49,"tag":192,"props":5155,"children":5156},{"style":235},[5157],{"type":55,"value":954},{"type":49,"tag":192,"props":5159,"children":5160},{"class":194,"line":348},[5161,5165,5169,5173,5177,5181,5185,5189],{"type":49,"tag":192,"props":5162,"children":5163},{"style":235},[5164],{"type":55,"value":4165},{"type":49,"tag":192,"props":5166,"children":5167},{"style":816},[5168],{"type":55,"value":3431},{"type":49,"tag":192,"props":5170,"children":5171},{"style":235},[5172],{"type":55,"value":253},{"type":49,"tag":192,"props":5174,"children":5175},{"style":235},[5176],{"type":55,"value":824},{"type":49,"tag":192,"props":5178,"children":5179},{"style":235},[5180],{"type":55,"value":238},{"type":49,"tag":192,"props":5182,"children":5183},{"style":204},[5184],{"type":55,"value":1119},{"type":49,"tag":192,"props":5186,"children":5187},{"style":235},[5188],{"type":55,"value":253},{"type":49,"tag":192,"props":5190,"children":5191},{"style":235},[5192],{"type":55,"value":954},{"type":49,"tag":192,"props":5194,"children":5195},{"class":194,"line":357},[5196,5200,5204,5208,5212],{"type":49,"tag":192,"props":5197,"children":5198},{"style":235},[5199],{"type":55,"value":4165},{"type":49,"tag":192,"props":5201,"children":5202},{"style":816},[5203],{"type":55,"value":4240},{"type":49,"tag":192,"props":5205,"children":5206},{"style":235},[5207],{"type":55,"value":253},{"type":49,"tag":192,"props":5209,"children":5210},{"style":235},[5211],{"type":55,"value":824},{"type":49,"tag":192,"props":5213,"children":5214},{"style":235},[5215],{"type":55,"value":971},{"type":49,"tag":192,"props":5217,"children":5218},{"class":194,"line":366},[5219,5224,5228,5232,5236,5240,5244,5248,5252,5256,5260,5264,5268,5272,5276,5281,5285],{"type":49,"tag":192,"props":5220,"children":5221},{"style":235},[5222],{"type":55,"value":5223},"            {",{"type":49,"tag":192,"props":5225,"children":5226},{"style":235},[5227],{"type":55,"value":238},{"type":49,"tag":192,"props":5229,"children":5230},{"style":4270},[5231],{"type":55,"value":4273},{"type":49,"tag":192,"props":5233,"children":5234},{"style":235},[5235],{"type":55,"value":253},{"type":49,"tag":192,"props":5237,"children":5238},{"style":235},[5239],{"type":55,"value":824},{"type":49,"tag":192,"props":5241,"children":5242},{"style":235},[5243],{"type":55,"value":238},{"type":49,"tag":192,"props":5245,"children":5246},{"style":204},[5247],{"type":55,"value":1172},{"type":49,"tag":192,"props":5249,"children":5250},{"style":235},[5251],{"type":55,"value":253},{"type":49,"tag":192,"props":5253,"children":5254},{"style":235},[5255],{"type":55,"value":1582},{"type":49,"tag":192,"props":5257,"children":5258},{"style":235},[5259],{"type":55,"value":238},{"type":49,"tag":192,"props":5261,"children":5262},{"style":4270},[5263],{"type":55,"value":4309},{"type":49,"tag":192,"props":5265,"children":5266},{"style":235},[5267],{"type":55,"value":253},{"type":49,"tag":192,"props":5269,"children":5270},{"style":235},[5271],{"type":55,"value":824},{"type":49,"tag":192,"props":5273,"children":5274},{"style":235},[5275],{"type":55,"value":238},{"type":49,"tag":192,"props":5277,"children":5278},{"style":204},[5279],{"type":55,"value":5280},"You are a sales assistant. Help customers find products and make purchases. Transfer to support for order issues or returns.",{"type":49,"tag":192,"props":5282,"children":5283},{"style":235},[5284],{"type":55,"value":253},{"type":49,"tag":192,"props":5286,"children":5287},{"style":235},[5288],{"type":55,"value":2106},{"type":49,"tag":192,"props":5290,"children":5291},{"class":194,"line":375},[5292],{"type":49,"tag":192,"props":5293,"children":5294},{"style":235},[5295],{"type":55,"value":4346},{"type":49,"tag":192,"props":5297,"children":5298},{"class":194,"line":384},[5299,5303,5307,5311,5315],{"type":49,"tag":192,"props":5300,"children":5301},{"style":235},[5302],{"type":55,"value":4165},{"type":49,"tag":192,"props":5304,"children":5305},{"style":816},[5306],{"type":55,"value":4358},{"type":49,"tag":192,"props":5308,"children":5309},{"style":235},[5310],{"type":55,"value":253},{"type":49,"tag":192,"props":5312,"children":5313},{"style":235},[5314],{"type":55,"value":824},{"type":49,"tag":192,"props":5316,"children":5317},{"style":235},[5318],{"type":55,"value":971},{"type":49,"tag":192,"props":5320,"children":5321},{"class":194,"line":393},[5322],{"type":49,"tag":192,"props":5323,"children":5324},{"style":235},[5325],{"type":55,"value":1151},{"type":49,"tag":192,"props":5327,"children":5328},{"class":194,"line":402},[5329,5333,5337,5341,5345,5349,5353,5357],{"type":49,"tag":192,"props":5330,"children":5331},{"style":235},[5332],{"type":55,"value":4267},{"type":49,"tag":192,"props":5334,"children":5335},{"style":4270},[5336],{"type":55,"value":2159},{"type":49,"tag":192,"props":5338,"children":5339},{"style":235},[5340],{"type":55,"value":253},{"type":49,"tag":192,"props":5342,"children":5343},{"style":235},[5344],{"type":55,"value":824},{"type":49,"tag":192,"props":5346,"children":5347},{"style":235},[5348],{"type":55,"value":238},{"type":49,"tag":192,"props":5350,"children":5351},{"style":204},[5352],{"type":55,"value":1278},{"type":49,"tag":192,"props":5354,"children":5355},{"style":235},[5356],{"type":55,"value":253},{"type":49,"tag":192,"props":5358,"children":5359},{"style":235},[5360],{"type":55,"value":954},{"type":49,"tag":192,"props":5362,"children":5363},{"class":194,"line":411},[5364,5368,5372,5376,5380],{"type":49,"tag":192,"props":5365,"children":5366},{"style":235},[5367],{"type":55,"value":4267},{"type":49,"tag":192,"props":5369,"children":5370},{"style":4270},[5371],{"type":55,"value":2195},{"type":49,"tag":192,"props":5373,"children":5374},{"style":235},[5375],{"type":55,"value":253},{"type":49,"tag":192,"props":5377,"children":5378},{"style":235},[5379],{"type":55,"value":824},{"type":49,"tag":192,"props":5381,"children":5382},{"style":235},[5383],{"type":55,"value":971},{"type":49,"tag":192,"props":5385,"children":5386},{"class":194,"line":420},[5387,5392,5396,5400,5404,5408,5412,5416,5420,5424,5428,5432,5436,5440,5444,5449,5453,5457,5461,5465,5469,5473,5477,5482,5486],{"type":49,"tag":192,"props":5388,"children":5389},{"style":235},[5390],{"type":55,"value":5391},"                {",{"type":49,"tag":192,"props":5393,"children":5394},{"style":235},[5395],{"type":55,"value":238},{"type":49,"tag":192,"props":5397,"children":5398},{"style":801},[5399],{"type":55,"value":2159},{"type":49,"tag":192,"props":5401,"children":5402},{"style":235},[5403],{"type":55,"value":253},{"type":49,"tag":192,"props":5405,"children":5406},{"style":235},[5407],{"type":55,"value":824},{"type":49,"tag":192,"props":5409,"children":5410},{"style":235},[5411],{"type":55,"value":238},{"type":49,"tag":192,"props":5413,"children":5414},{"style":204},[5415],{"type":55,"value":1331},{"type":49,"tag":192,"props":5417,"children":5418},{"style":235},[5419],{"type":55,"value":253},{"type":49,"tag":192,"props":5421,"children":5422},{"style":235},[5423],{"type":55,"value":1582},{"type":49,"tag":192,"props":5425,"children":5426},{"style":235},[5427],{"type":55,"value":238},{"type":49,"tag":192,"props":5429,"children":5430},{"style":801},[5431],{"type":55,"value":2080},{"type":49,"tag":192,"props":5433,"children":5434},{"style":235},[5435],{"type":55,"value":253},{"type":49,"tag":192,"props":5437,"children":5438},{"style":235},[5439],{"type":55,"value":824},{"type":49,"tag":192,"props":5441,"children":5442},{"style":235},[5443],{"type":55,"value":238},{"type":49,"tag":192,"props":5445,"children":5446},{"style":204},[5447],{"type":55,"value":5448},"support-id",{"type":49,"tag":192,"props":5450,"children":5451},{"style":235},[5452],{"type":55,"value":253},{"type":49,"tag":192,"props":5454,"children":5455},{"style":235},[5456],{"type":55,"value":1582},{"type":49,"tag":192,"props":5458,"children":5459},{"style":235},[5460],{"type":55,"value":238},{"type":49,"tag":192,"props":5462,"children":5463},{"style":801},[5464],{"type":55,"value":2298},{"type":49,"tag":192,"props":5466,"children":5467},{"style":235},[5468],{"type":55,"value":253},{"type":49,"tag":192,"props":5470,"children":5471},{"style":235},[5472],{"type":55,"value":824},{"type":49,"tag":192,"props":5474,"children":5475},{"style":235},[5476],{"type":55,"value":238},{"type":49,"tag":192,"props":5478,"children":5479},{"style":204},[5480],{"type":55,"value":5481},"Transfer for order status, shipping, or account issues",{"type":49,"tag":192,"props":5483,"children":5484},{"style":235},[5485],{"type":55,"value":253},{"type":49,"tag":192,"props":5487,"children":5488},{"style":235},[5489],{"type":55,"value":1609},{"type":49,"tag":192,"props":5491,"children":5492},{"class":194,"line":429},[5493,5497,5501,5505,5509,5513,5517,5521,5525,5529,5533,5537,5541,5545,5549,5554,5558,5562,5566,5570,5574,5578,5582,5587,5591],{"type":49,"tag":192,"props":5494,"children":5495},{"style":235},[5496],{"type":55,"value":5391},{"type":49,"tag":192,"props":5498,"children":5499},{"style":235},[5500],{"type":55,"value":238},{"type":49,"tag":192,"props":5502,"children":5503},{"style":801},[5504],{"type":55,"value":2159},{"type":49,"tag":192,"props":5506,"children":5507},{"style":235},[5508],{"type":55,"value":253},{"type":49,"tag":192,"props":5510,"children":5511},{"style":235},[5512],{"type":55,"value":824},{"type":49,"tag":192,"props":5514,"children":5515},{"style":235},[5516],{"type":55,"value":238},{"type":49,"tag":192,"props":5518,"children":5519},{"style":204},[5520],{"type":55,"value":1331},{"type":49,"tag":192,"props":5522,"children":5523},{"style":235},[5524],{"type":55,"value":253},{"type":49,"tag":192,"props":5526,"children":5527},{"style":235},[5528],{"type":55,"value":1582},{"type":49,"tag":192,"props":5530,"children":5531},{"style":235},[5532],{"type":55,"value":238},{"type":49,"tag":192,"props":5534,"children":5535},{"style":801},[5536],{"type":55,"value":2080},{"type":49,"tag":192,"props":5538,"children":5539},{"style":235},[5540],{"type":55,"value":253},{"type":49,"tag":192,"props":5542,"children":5543},{"style":235},[5544],{"type":55,"value":824},{"type":49,"tag":192,"props":5546,"children":5547},{"style":235},[5548],{"type":55,"value":238},{"type":49,"tag":192,"props":5550,"children":5551},{"style":204},[5552],{"type":55,"value":5553},"returns-id",{"type":49,"tag":192,"props":5555,"children":5556},{"style":235},[5557],{"type":55,"value":253},{"type":49,"tag":192,"props":5559,"children":5560},{"style":235},[5561],{"type":55,"value":1582},{"type":49,"tag":192,"props":5563,"children":5564},{"style":235},[5565],{"type":55,"value":238},{"type":49,"tag":192,"props":5567,"children":5568},{"style":801},[5569],{"type":55,"value":2298},{"type":49,"tag":192,"props":5571,"children":5572},{"style":235},[5573],{"type":55,"value":253},{"type":49,"tag":192,"props":5575,"children":5576},{"style":235},[5577],{"type":55,"value":824},{"type":49,"tag":192,"props":5579,"children":5580},{"style":235},[5581],{"type":55,"value":238},{"type":49,"tag":192,"props":5583,"children":5584},{"style":204},[5585],{"type":55,"value":5586},"Transfer for returns, refunds, or exchanges",{"type":49,"tag":192,"props":5588,"children":5589},{"style":235},[5590],{"type":55,"value":253},{"type":49,"tag":192,"props":5592,"children":5593},{"style":235},[5594],{"type":55,"value":2106},{"type":49,"tag":192,"props":5596,"children":5597},{"class":194,"line":438},[5598],{"type":49,"tag":192,"props":5599,"children":5600},{"style":235},[5601],{"type":55,"value":4679},{"type":49,"tag":192,"props":5603,"children":5604},{"class":194,"line":447},[5605],{"type":49,"tag":192,"props":5606,"children":5607},{"style":235},[5608],{"type":55,"value":4338},{"type":49,"tag":192,"props":5610,"children":5611},{"class":194,"line":455},[5612],{"type":49,"tag":192,"props":5613,"children":5614},{"style":235},[5615],{"type":55,"value":4694},{"type":49,"tag":192,"props":5617,"children":5618},{"class":194,"line":464},[5619],{"type":49,"tag":192,"props":5620,"children":5621},{"style":235},[5622],{"type":55,"value":620},{"type":49,"tag":192,"props":5624,"children":5625},{"class":194,"line":473},[5626],{"type":49,"tag":192,"props":5627,"children":5628},{"style":235},[5629],{"type":55,"value":680},{"type":49,"tag":192,"props":5631,"children":5632},{"class":194,"line":482},[5633],{"type":49,"tag":192,"props":5634,"children":5635},{"style":235},[5636],{"type":55,"value":1717},{"type":49,"tag":192,"props":5638,"children":5639},{"class":194,"line":491},[5640,5644,5648,5652,5656,5660,5664,5668,5672],{"type":49,"tag":192,"props":5641,"children":5642},{"style":235},[5643],{"type":55,"value":1725},{"type":49,"tag":192,"props":5645,"children":5646},{"style":235},[5647],{"type":55,"value":238},{"type":49,"tag":192,"props":5649,"children":5650},{"style":199},[5651],{"type":55,"value":2080},{"type":49,"tag":192,"props":5653,"children":5654},{"style":235},[5655],{"type":55,"value":253},{"type":49,"tag":192,"props":5657,"children":5658},{"style":235},[5659],{"type":55,"value":824},{"type":49,"tag":192,"props":5661,"children":5662},{"style":235},[5663],{"type":55,"value":238},{"type":49,"tag":192,"props":5665,"children":5666},{"style":204},[5667],{"type":55,"value":5448},{"type":49,"tag":192,"props":5669,"children":5670},{"style":235},[5671],{"type":55,"value":253},{"type":49,"tag":192,"props":5673,"children":5674},{"style":235},[5675],{"type":55,"value":1609},{"type":49,"tag":192,"props":5677,"children":5678},{"class":194,"line":500},[5679,5683,5687,5691,5695,5699,5703,5707,5711],{"type":49,"tag":192,"props":5680,"children":5681},{"style":235},[5682],{"type":55,"value":1725},{"type":49,"tag":192,"props":5684,"children":5685},{"style":235},[5686],{"type":55,"value":238},{"type":49,"tag":192,"props":5688,"children":5689},{"style":199},[5690],{"type":55,"value":2080},{"type":49,"tag":192,"props":5692,"children":5693},{"style":235},[5694],{"type":55,"value":253},{"type":49,"tag":192,"props":5696,"children":5697},{"style":235},[5698],{"type":55,"value":824},{"type":49,"tag":192,"props":5700,"children":5701},{"style":235},[5702],{"type":55,"value":238},{"type":49,"tag":192,"props":5704,"children":5705},{"style":204},[5706],{"type":55,"value":5553},{"type":49,"tag":192,"props":5708,"children":5709},{"style":235},[5710],{"type":55,"value":253},{"type":49,"tag":192,"props":5712,"children":5713},{"style":235},[5714],{"type":55,"value":2106},{"type":49,"tag":192,"props":5716,"children":5717},{"class":194,"line":509},[5718],{"type":49,"tag":192,"props":5719,"children":5720},{"style":235},[5721],{"type":55,"value":2114},{"type":49,"tag":192,"props":5723,"children":5724},{"class":194,"line":518},[5725],{"type":49,"tag":192,"props":5726,"children":5727},{"style":235},[5728],{"type":55,"value":2122},{"type":49,"tag":96,"props":5730,"children":5732},{"id":5731},"best-practices",[5733],{"type":55,"value":5734},"Best Practices",{"type":49,"tag":5736,"props":5737,"children":5738},"ol",{},[5739,5749,5759,5769,5779],{"type":49,"tag":112,"props":5740,"children":5741},{},[5742,5747],{"type":49,"tag":71,"props":5743,"children":5744},{},[5745],{"type":55,"value":5746},"Keep assistants focused",{"type":55,"value":5748}," — Each assistant should have 1-3 goals maximum",{"type":49,"tag":112,"props":5750,"children":5751},{},[5752,5757],{"type":49,"tag":71,"props":5753,"children":5754},{},[5755],{"type":55,"value":5756},"Minimize squad size",{"type":55,"value":5758}," — Split only when there's a clear functional boundary",{"type":49,"tag":112,"props":5760,"children":5761},{},[5762,5767],{"type":49,"tag":71,"props":5763,"children":5764},{},[5765],{"type":55,"value":5766},"Write specific handoff descriptions",{"type":55,"value":5768}," — The LLM uses these to decide when to transfer",{"type":49,"tag":112,"props":5770,"children":5771},{},[5772,5777],{"type":49,"tag":71,"props":5773,"children":5774},{},[5775],{"type":55,"value":5776},"Mention handoffs in system prompts",{"type":55,"value":5778}," — Tell each assistant what departments exist",{"type":49,"tag":112,"props":5780,"children":5781},{},[5782,5787],{"type":49,"tag":71,"props":5783,"children":5784},{},[5785],{"type":55,"value":5786},"Use member overrides",{"type":55,"value":5788}," — Apply consistent voice and transcriber settings across the squad",{"type":49,"tag":96,"props":5790,"children":5792},{"id":5791},"managing-squads",[5793],{"type":55,"value":5794},"Managing Squads",{"type":49,"tag":181,"props":5796,"children":5798},{"className":183,"code":5797,"language":185,"meta":186,"style":186},"# List squads\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fsquad -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Get a squad\ncurl https:\u002F\u002Fapi.vapi.ai\u002Fsquad\u002F{id} -H \"Authorization: Bearer $VAPI_API_KEY\"\n\n# Update a squad\ncurl -X PATCH https:\u002F\u002Fapi.vapi.ai\u002Fsquad\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"name\": \"Updated Squad Name\",\n    \"members\": [\n      { \"assistantId\": \"first-assistant-id\" },\n      { \"assistantId\": \"second-assistant-id\" }\n    ]\n  }'\n\n# Delete a squad\ncurl -X DELETE https:\u002F\u002Fapi.vapi.ai\u002Fsquad\u002F{id} \\\n  -H \"Authorization: Bearer $VAPI_API_KEY\"\n",[5799],{"type":49,"tag":79,"props":5800,"children":5801},{"__ignoreMap":186},[5802,5811,5843,5850,5858,5890,5897,5905,5929,5956,5979,5994,6002,6009,6017,6025,6032,6043,6050,6058,6082],{"type":49,"tag":192,"props":5803,"children":5804},{"class":194,"line":195},[5805],{"type":49,"tag":192,"props":5806,"children":5808},{"style":5807},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[5809],{"type":55,"value":5810},"# List squads\n",{"type":49,"tag":192,"props":5812,"children":5813},{"class":194,"line":226},[5814,5818,5822,5827,5831,5835,5839],{"type":49,"tag":192,"props":5815,"children":5816},{"style":199},[5817],{"type":55,"value":176},{"type":49,"tag":192,"props":5819,"children":5820},{"style":204},[5821],{"type":55,"value":217},{"type":49,"tag":192,"props":5823,"children":5824},{"style":204},[5825],{"type":55,"value":5826}," -H",{"type":49,"tag":192,"props":5828,"children":5829},{"style":235},[5830],{"type":55,"value":238},{"type":49,"tag":192,"props":5832,"children":5833},{"style":204},[5834],{"type":55,"value":243},{"type":49,"tag":192,"props":5836,"children":5837},{"style":220},[5838],{"type":55,"value":248},{"type":49,"tag":192,"props":5840,"children":5841},{"style":235},[5842],{"type":55,"value":2320},{"type":49,"tag":192,"props":5844,"children":5845},{"class":194,"line":260},[5846],{"type":49,"tag":192,"props":5847,"children":5848},{"emptyLinePlaceholder":771},[5849],{"type":55,"value":774},{"type":49,"tag":192,"props":5851,"children":5852},{"class":194,"line":285},[5853],{"type":49,"tag":192,"props":5854,"children":5855},{"style":5807},[5856],{"type":55,"value":5857},"# Get a squad\n",{"type":49,"tag":192,"props":5859,"children":5860},{"class":194,"line":304},[5861,5865,5870,5874,5878,5882,5886],{"type":49,"tag":192,"props":5862,"children":5863},{"style":199},[5864],{"type":55,"value":176},{"type":49,"tag":192,"props":5866,"children":5867},{"style":204},[5868],{"type":55,"value":5869}," https:\u002F\u002Fapi.vapi.ai\u002Fsquad\u002F{id}",{"type":49,"tag":192,"props":5871,"children":5872},{"style":204},[5873],{"type":55,"value":5826},{"type":49,"tag":192,"props":5875,"children":5876},{"style":235},[5877],{"type":55,"value":238},{"type":49,"tag":192,"props":5879,"children":5880},{"style":204},[5881],{"type":55,"value":243},{"type":49,"tag":192,"props":5883,"children":5884},{"style":220},[5885],{"type":55,"value":248},{"type":49,"tag":192,"props":5887,"children":5888},{"style":235},[5889],{"type":55,"value":2320},{"type":49,"tag":192,"props":5891,"children":5892},{"class":194,"line":313},[5893],{"type":49,"tag":192,"props":5894,"children":5895},{"emptyLinePlaceholder":771},[5896],{"type":55,"value":774},{"type":49,"tag":192,"props":5898,"children":5899},{"class":194,"line":27},[5900],{"type":49,"tag":192,"props":5901,"children":5902},{"style":5807},[5903],{"type":55,"value":5904},"# Update a squad\n",{"type":49,"tag":192,"props":5906,"children":5907},{"class":194,"line":330},[5908,5912,5916,5921,5925],{"type":49,"tag":192,"props":5909,"children":5910},{"style":199},[5911],{"type":55,"value":176},{"type":49,"tag":192,"props":5913,"children":5914},{"style":204},[5915],{"type":55,"value":207},{"type":49,"tag":192,"props":5917,"children":5918},{"style":204},[5919],{"type":55,"value":5920}," PATCH",{"type":49,"tag":192,"props":5922,"children":5923},{"style":204},[5924],{"type":55,"value":5869},{"type":49,"tag":192,"props":5926,"children":5927},{"style":220},[5928],{"type":55,"value":223},{"type":49,"tag":192,"props":5930,"children":5931},{"class":194,"line":339},[5932,5936,5940,5944,5948,5952],{"type":49,"tag":192,"props":5933,"children":5934},{"style":204},[5935],{"type":55,"value":232},{"type":49,"tag":192,"props":5937,"children":5938},{"style":235},[5939],{"type":55,"value":238},{"type":49,"tag":192,"props":5941,"children":5942},{"style":204},[5943],{"type":55,"value":243},{"type":49,"tag":192,"props":5945,"children":5946},{"style":220},[5947],{"type":55,"value":248},{"type":49,"tag":192,"props":5949,"children":5950},{"style":235},[5951],{"type":55,"value":253},{"type":49,"tag":192,"props":5953,"children":5954},{"style":220},[5955],{"type":55,"value":223},{"type":49,"tag":192,"props":5957,"children":5958},{"class":194,"line":348},[5959,5963,5967,5971,5975],{"type":49,"tag":192,"props":5960,"children":5961},{"style":204},[5962],{"type":55,"value":232},{"type":49,"tag":192,"props":5964,"children":5965},{"style":235},[5966],{"type":55,"value":238},{"type":49,"tag":192,"props":5968,"children":5969},{"style":204},[5970],{"type":55,"value":274},{"type":49,"tag":192,"props":5972,"children":5973},{"style":235},[5974],{"type":55,"value":253},{"type":49,"tag":192,"props":5976,"children":5977},{"style":220},[5978],{"type":55,"value":223},{"type":49,"tag":192,"props":5980,"children":5981},{"class":194,"line":357},[5982,5986,5990],{"type":49,"tag":192,"props":5983,"children":5984},{"style":204},[5985],{"type":55,"value":291},{"type":49,"tag":192,"props":5987,"children":5988},{"style":235},[5989],{"type":55,"value":296},{"type":49,"tag":192,"props":5991,"children":5992},{"style":204},[5993],{"type":55,"value":301},{"type":49,"tag":192,"props":5995,"children":5996},{"class":194,"line":366},[5997],{"type":49,"tag":192,"props":5998,"children":5999},{"style":204},[6000],{"type":55,"value":6001},"    \"name\": \"Updated Squad Name\",\n",{"type":49,"tag":192,"props":6003,"children":6004},{"class":194,"line":375},[6005],{"type":49,"tag":192,"props":6006,"children":6007},{"style":204},[6008],{"type":55,"value":319},{"type":49,"tag":192,"props":6010,"children":6011},{"class":194,"line":384},[6012],{"type":49,"tag":192,"props":6013,"children":6014},{"style":204},[6015],{"type":55,"value":6016},"      { \"assistantId\": \"first-assistant-id\" },\n",{"type":49,"tag":192,"props":6018,"children":6019},{"class":194,"line":393},[6020],{"type":49,"tag":192,"props":6021,"children":6022},{"style":204},[6023],{"type":55,"value":6024},"      { \"assistantId\": \"second-assistant-id\" }\n",{"type":49,"tag":192,"props":6026,"children":6027},{"class":194,"line":402},[6028],{"type":49,"tag":192,"props":6029,"children":6030},{"style":204},[6031],{"type":55,"value":689},{"type":49,"tag":192,"props":6033,"children":6034},{"class":194,"line":411},[6035,6039],{"type":49,"tag":192,"props":6036,"children":6037},{"style":204},[6038],{"type":55,"value":698},{"type":49,"tag":192,"props":6040,"children":6041},{"style":235},[6042],{"type":55,"value":703},{"type":49,"tag":192,"props":6044,"children":6045},{"class":194,"line":420},[6046],{"type":49,"tag":192,"props":6047,"children":6048},{"emptyLinePlaceholder":771},[6049],{"type":55,"value":774},{"type":49,"tag":192,"props":6051,"children":6052},{"class":194,"line":429},[6053],{"type":49,"tag":192,"props":6054,"children":6055},{"style":5807},[6056],{"type":55,"value":6057},"# Delete a squad\n",{"type":49,"tag":192,"props":6059,"children":6060},{"class":194,"line":438},[6061,6065,6069,6074,6078],{"type":49,"tag":192,"props":6062,"children":6063},{"style":199},[6064],{"type":55,"value":176},{"type":49,"tag":192,"props":6066,"children":6067},{"style":204},[6068],{"type":55,"value":207},{"type":49,"tag":192,"props":6070,"children":6071},{"style":204},[6072],{"type":55,"value":6073}," DELETE",{"type":49,"tag":192,"props":6075,"children":6076},{"style":204},[6077],{"type":55,"value":5869},{"type":49,"tag":192,"props":6079,"children":6080},{"style":220},[6081],{"type":55,"value":223},{"type":49,"tag":192,"props":6083,"children":6084},{"class":194,"line":447},[6085,6089,6093,6097,6101],{"type":49,"tag":192,"props":6086,"children":6087},{"style":204},[6088],{"type":55,"value":232},{"type":49,"tag":192,"props":6090,"children":6091},{"style":235},[6092],{"type":55,"value":238},{"type":49,"tag":192,"props":6094,"children":6095},{"style":204},[6096],{"type":55,"value":243},{"type":49,"tag":192,"props":6098,"children":6099},{"style":220},[6100],{"type":55,"value":248},{"type":49,"tag":192,"props":6102,"children":6103},{"style":235},[6104],{"type":55,"value":2320},{"type":49,"tag":58,"props":6106,"children":6107},{},[6108,6110,6115],{"type":55,"value":6109},"The update API requires the complete ",{"type":49,"tag":79,"props":6111,"children":6113},{"className":6112},[],[6114],{"type":55,"value":1881},{"type":55,"value":6116}," array. Retrieve the current squad first and preserve every member when changing its name or overrides.",{"type":49,"tag":96,"props":6118,"children":6120},{"id":6119},"references",[6121],{"type":55,"value":6122},"References",{"type":49,"tag":108,"props":6124,"children":6125},{},[6126,6140,6152],{"type":49,"tag":112,"props":6127,"children":6128},{},[6129,6138],{"type":49,"tag":6130,"props":6131,"children":6135},"a",{"href":6132,"rel":6133},"https:\u002F\u002Fdocs.vapi.ai\u002Fsquads",[6134],"nofollow",[6136],{"type":55,"value":6137},"Vapi Squads Docs",{"type":55,"value":6139}," — Official documentation",{"type":49,"tag":112,"props":6141,"children":6142},{},[6143,6150],{"type":49,"tag":6130,"props":6144,"children":6147},{"href":6145,"rel":6146},"https:\u002F\u002Fdocs.vapi.ai\u002Fsquads-example",[6134],[6148],{"type":55,"value":6149},"Squad Examples",{"type":55,"value":6151}," — More patterns",{"type":49,"tag":112,"props":6153,"children":6154},{},[6155,6162],{"type":49,"tag":6130,"props":6156,"children":6159},{"href":6157,"rel":6158},"https:\u002F\u002Fdocs.vapi.ai\u002Fsquads\u002Fhandoff",[6134],[6160],{"type":55,"value":6161},"Handoff Configuration",{"type":55,"value":6163}," — Detailed handoff guide",{"type":49,"tag":96,"props":6165,"children":6167},{"id":6166},"additional-resources",[6168],{"type":55,"value":6169},"Additional Resources",{"type":49,"tag":58,"props":6171,"children":6172},{},[6173,6175,6180],{"type":55,"value":6174},"Vapi provides a ",{"type":49,"tag":71,"props":6176,"children":6177},{},[6178],{"type":55,"value":6179},"documentation MCP server",{"type":55,"value":6181}," that gives compatible AI agents access to the Vapi knowledge base. Use its documentation search for advanced configuration, troubleshooting, SDK details, and anything beyond this skill.",{"type":49,"tag":58,"props":6183,"children":6184},{},[6185,6190],{"type":49,"tag":71,"props":6186,"children":6187},{},[6188],{"type":55,"value":6189},"Manual setup:",{"type":55,"value":6191}," If your agent doesn't auto-detect the config, run:",{"type":49,"tag":181,"props":6193,"children":6195},{"className":183,"code":6194,"language":185,"meta":186,"style":186},"claude mcp add vapi-docs -- npx -y mcp-remote https:\u002F\u002Fdocs.vapi.ai\u002F_mcp\u002Fserver\n",[6196],{"type":49,"tag":79,"props":6197,"children":6198},{"__ignoreMap":186},[6199],{"type":49,"tag":192,"props":6200,"children":6201},{"class":194,"line":195},[6202,6207,6212,6217,6222,6227,6232,6237,6242],{"type":49,"tag":192,"props":6203,"children":6204},{"style":199},[6205],{"type":55,"value":6206},"claude",{"type":49,"tag":192,"props":6208,"children":6209},{"style":204},[6210],{"type":55,"value":6211}," mcp",{"type":49,"tag":192,"props":6213,"children":6214},{"style":204},[6215],{"type":55,"value":6216}," add",{"type":49,"tag":192,"props":6218,"children":6219},{"style":204},[6220],{"type":55,"value":6221}," vapi-docs",{"type":49,"tag":192,"props":6223,"children":6224},{"style":204},[6225],{"type":55,"value":6226}," --",{"type":49,"tag":192,"props":6228,"children":6229},{"style":204},[6230],{"type":55,"value":6231}," npx",{"type":49,"tag":192,"props":6233,"children":6234},{"style":204},[6235],{"type":55,"value":6236}," -y",{"type":49,"tag":192,"props":6238,"children":6239},{"style":204},[6240],{"type":55,"value":6241}," mcp-remote",{"type":49,"tag":192,"props":6243,"children":6244},{"style":204},[6245],{"type":55,"value":6246}," https:\u002F\u002Fdocs.vapi.ai\u002F_mcp\u002Fserver\n",{"type":49,"tag":58,"props":6248,"children":6249},{},[6250,6252,6259],{"type":55,"value":6251},"See the ",{"type":49,"tag":6130,"props":6253,"children":6256},{"href":6254,"rel":6255},"https:\u002F\u002Fdocs.vapi.ai\u002Fcli\u002Fmcp",[6134],[6257],{"type":55,"value":6258},"Vapi MCP integration guide",{"type":55,"value":6260}," for setup instructions across supported agents.",{"type":49,"tag":6262,"props":6263,"children":6264},"style",{},[6265],{"type":55,"value":6266},"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":6268,"total":348},[6269,6288,6300,6311,6325,6331,6344,6357,6370,6384],{"slug":8,"name":8,"fn":6270,"description":6271,"org":6272,"tags":6273,"stars":6285,"repoUrl":6286,"updatedAt":6287},"build AI voice assistants with Vapi","Build AI voice assistants and phone agents with Vapi. Use this skill when users want to create voice agents, phone bots, IVR systems, outbound calling campaigns, or any voice-based AI application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6274,6275,6278,6281,6284],{"name":14,"slug":15,"type":16},{"name":6276,"slug":6277,"type":16},"Automation","automation",{"name":6279,"slug":6280,"type":16},"Speech","speech",{"name":6282,"slug":6283,"type":16},"Text-to-Speech","text-to-speech",{"name":18,"slug":19,"type":16},56,"https:\u002F\u002Fgithub.com\u002FVapiAI\u002Fmcp-server","2026-07-17T06:06:13.535114",{"slug":6289,"name":6289,"fn":6290,"description":6291,"org":6292,"tags":6293,"stars":23,"repoUrl":24,"updatedAt":6299},"create-assistant","create Vapi voice AI assistants","Create Vapi voice AI assistant payloads or assistants through the Vapi API. Use when building phone or web call agents, generating assistant JSON, choosing safe default model\u002Fvoice\u002Ftranscriber settings, attaching existing Vapi tool IDs, adding assistant hooks, configuring HIPAA\u002Fcompliance only when explicitly requested, or fixing Vapi assistant API validation errors.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6294,6295,6298],{"name":14,"slug":15,"type":16},{"name":6296,"slug":6297,"type":16},"API Development","api-development",{"name":18,"slug":19,"type":16},"2026-07-20T05:57:28.680409",{"slug":6301,"name":6301,"fn":6302,"description":6303,"org":6304,"tags":6305,"stars":23,"repoUrl":24,"updatedAt":6310},"create-call","create automated phone calls with Vapi","Create outbound phone calls, web calls, and batch calls using the Vapi API. Use when making automated calls, testing voice assistants, scheduling call campaigns, or initiating conversations programmatically.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6306,6307,6308,6309],{"name":14,"slug":15,"type":16},{"name":6276,"slug":6277,"type":16},{"name":6279,"slug":6280,"type":16},{"name":18,"slug":19,"type":16},"2026-07-20T05:57:32.68652",{"slug":6312,"name":6312,"fn":6313,"description":6314,"org":6315,"tags":6316,"stars":23,"repoUrl":24,"updatedAt":6324},"create-phone-number","manage Vapi phone numbers","Set up and manage phone numbers in Vapi for inbound and outbound voice AI calls. Use when importing Twilio, Vonage, or Telnyx numbers, buying Vapi numbers, or configuring phone numbers for assistants.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6317,6320,6323],{"name":6318,"slug":6319,"type":16},"Operations","operations",{"name":6321,"slug":6322,"type":16},"Twilio","twilio",{"name":18,"slug":19,"type":16},"2026-07-20T05:57:29.699227",{"slug":4,"name":4,"fn":5,"description":6,"org":6326,"tags":6327,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6328,6329,6330],{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},{"slug":6332,"name":6332,"fn":6333,"description":6334,"org":6335,"tags":6336,"stars":23,"repoUrl":24,"updatedAt":6343},"create-tool","create custom tools for Vapi assistants","Create custom tools for Vapi voice assistants including function tools, API request tools, transfer call tools, end call tools, and integrations with Google Calendar, Sheets, Slack, and more. Use when adding capabilities to voice agents, building tool servers, or integrating external APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6337,6338,6339,6340],{"name":14,"slug":15,"type":16},{"name":6296,"slug":6297,"type":16},{"name":6276,"slug":6277,"type":16},{"name":6341,"slug":6342,"type":16},"Integrations","integrations","2026-07-20T05:57:27.69122",{"slug":92,"name":92,"fn":6345,"description":6346,"org":6347,"tags":6348,"stars":23,"repoUrl":24,"updatedAt":6356},"configure Vapi API authentication","Guide users through obtaining and configuring a Vapi API key. Use when the user needs to set up Vapi, when API calls fail due to missing keys, or when the user mentions needing access to Vapi's voice AI platform.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6349,6350,6353],{"name":6296,"slug":6297,"type":16},{"name":6351,"slug":6352,"type":16},"Auth","auth",{"name":6354,"slug":6355,"type":16},"Configuration","configuration","2026-07-20T05:57:25.717229",{"slug":6358,"name":6358,"fn":6359,"description":6360,"org":6361,"tags":6362,"stars":23,"repoUrl":24,"updatedAt":6369},"setup-webhook","configure Vapi webhooks for call events","Configure Vapi server URLs and webhooks to receive real-time call events, transcripts, tool calls, and end-of-call reports. Use when setting up webhook endpoints, building tool servers, or integrating Vapi events into your application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6363,6364,6365,6366],{"name":14,"slug":15,"type":16},{"name":6296,"slug":6297,"type":16},{"name":6276,"slug":6277,"type":16},{"name":6367,"slug":6368,"type":16},"Webhooks","webhooks","2026-07-20T05:57:31.703006",{"slug":6371,"name":6371,"fn":6372,"description":6373,"org":6374,"tags":6375,"stars":23,"repoUrl":24,"updatedAt":6383},"vapi-bootstrap-framework","scaffold Vapi voice agent projects","Scaffold a complete Vapi voice-agent project from a ROUGH_DRAFT.md spec. Generates package.json, tsconfig.json, .env.example, .gitignore, and the full TypeScript framework — scenario registry, per-language voice\u002Ftranscriber stack, prompt composer, assistant builder, and an idempotent bootstrap script — plus one rough first-draft body.md per scenario. Drop this skill in any project's .cursor\u002Fskills\u002F folder (or ~\u002F.cursor\u002Fskills\u002F for global use), write a ROUGH_DRAFT.md at the project root, name the skill, and `bun run bootstrap` puts the entire fleet live in dashboard.vapi.ai. Use when the user asks to scaffold or bootstrap Vapi voice agents from a rough draft, build a Vapi assistant fleet, or invokes this skill by name. Targets Bun + TypeScript + @vapi-ai\u002Fserver-sdk.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6376,6377,6380,6382],{"name":14,"slug":15,"type":16},{"name":6378,"slug":6379,"type":16},"Engineering","engineering",{"name":6381,"slug":714,"type":16},"TypeScript",{"name":18,"slug":19,"type":16},"2026-07-20T05:57:26.732699",{"slug":6385,"name":6385,"fn":6386,"description":6387,"org":6388,"tags":6389,"stars":23,"repoUrl":24,"updatedAt":6396},"vapi-prompt-builder","design and audit Vapi voice agent prompts","Create, improve, or audit Vapi voice agent and Squad system prompts for production phone and web based voice agents. Use when the user wants help designing a Vapi assistant prompt, multi-assistant Squad prompt set, refining an existing prompt, creating prompt sections, building an intake or handoff workflow, improving tool-use instructions, adding guardrails, or optimizing voice-agent behavior for brevity, turn-taking, error handling, caller data collection, escalation, handoffs, and spoken formatting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6390,6391,6394,6395],{"name":14,"slug":15,"type":16},{"name":6392,"slug":6393,"type":16},"Prompt Engineering","prompt-engineering",{"name":6279,"slug":6280,"type":16},{"name":18,"slug":19,"type":16},"2026-07-17T06:08:21.647767",{"items":6398,"total":339},[6399,6405,6412,6418,6424,6431,6437],{"slug":6289,"name":6289,"fn":6290,"description":6291,"org":6400,"tags":6401,"stars":23,"repoUrl":24,"updatedAt":6299},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6402,6403,6404],{"name":14,"slug":15,"type":16},{"name":6296,"slug":6297,"type":16},{"name":18,"slug":19,"type":16},{"slug":6301,"name":6301,"fn":6302,"description":6303,"org":6406,"tags":6407,"stars":23,"repoUrl":24,"updatedAt":6310},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6408,6409,6410,6411],{"name":14,"slug":15,"type":16},{"name":6276,"slug":6277,"type":16},{"name":6279,"slug":6280,"type":16},{"name":18,"slug":19,"type":16},{"slug":6312,"name":6312,"fn":6313,"description":6314,"org":6413,"tags":6414,"stars":23,"repoUrl":24,"updatedAt":6324},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6415,6416,6417],{"name":6318,"slug":6319,"type":16},{"name":6321,"slug":6322,"type":16},{"name":18,"slug":19,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":6419,"tags":6420,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6421,6422,6423],{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},{"slug":6332,"name":6332,"fn":6333,"description":6334,"org":6425,"tags":6426,"stars":23,"repoUrl":24,"updatedAt":6343},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6427,6428,6429,6430],{"name":14,"slug":15,"type":16},{"name":6296,"slug":6297,"type":16},{"name":6276,"slug":6277,"type":16},{"name":6341,"slug":6342,"type":16},{"slug":92,"name":92,"fn":6345,"description":6346,"org":6432,"tags":6433,"stars":23,"repoUrl":24,"updatedAt":6356},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6434,6435,6436],{"name":6296,"slug":6297,"type":16},{"name":6351,"slug":6352,"type":16},{"name":6354,"slug":6355,"type":16},{"slug":6358,"name":6358,"fn":6359,"description":6360,"org":6438,"tags":6439,"stars":23,"repoUrl":24,"updatedAt":6369},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[6440,6441,6442,6443],{"name":14,"slug":15,"type":16},{"name":6296,"slug":6297,"type":16},{"name":6276,"slug":6277,"type":16},{"name":6367,"slug":6368,"type":16}]