squad + widget
# support
g
Is there any possibility to use the widget with squad instead of a single assistant?
v
Currently, the Vapi web widget does not support configuring a squad (multi-assistant conversation) directly; it only allows specifying a single assistant via
assistant-id
or, in voice mode, an inline
assistant
object.
Here’s an example of the supported configuration:
Copy code
html
<vapi-widget
  public-key="your-public-key"
  assistant-id="your-assistant-id"
  mode="chat"
></vapi-widget>
For multi-assistant (squad) workflows, you need to use the API directly, not the widget configuration. (According to the documentation I have found: https://docs.vapi.ai/chat/web-widget) Source: - [Web widget documentation](https://docs.vapi.ai/chat/web-widget)
g
will it be build?
c
Hi gebull123, Not at the moment. The Web Widget only accepts a single assistant via
assistant-id
(or an inline
assistant
object in voice mode) — it does not support squads. See the widget docs: https://docs.vapi.ai/chat/web-widget Workarounds: - Create a server-side session using the API that starts a squad-enabled call/session and expose a short demo link or web call endpoint to users. - Build a custom frontend that collects initial input (e.g., language or intent) and then creates a squad-powered session via the server SDK/API, then embeds a custom chat/voice UI or launches a web call. If you’d like squad support in the widget, we can record this as feedback/feature request.