Create a custom multi-agent voice app template
mainTo build your own multi-agent voice application using this project's templates:
- Create a new agent set configuration.
- Register the new configuration in
src/app/agentConfigs/index.ts. - The new agent will then be available for selection in the UI via the 'Scenario' dropdown menu.
Each agentConfig can define:
instructions: The system prompt for the agent.tools: The list of available tools.toolLogic: Custom logic that runs when a tool is called. By default, tool calls returnTrue. If you definetoolLogic, it will execute your specific code and return an object to the conversation (useful for RAG context or external API data).