bendytree
04/28/2025, 6:36 PMimport Vapi from "@vapi-ai/web";
const vapi = new Vapi("your-public-key-or-jwt");
const call = await vapi.start({ metadata: {...}, model: { provider: 'custom-llm', url: '...' }, .... });
Later on, after the call starts, i need to update the metadata or the model url for this assistant. Problem is, the assistant is not persisted, so I can't use the standard "update assistant" api (I don't think). Is there any way to update the metadata that is sent to the custom-llm? Or update the url for the custom-llm model?Kings_big💫
04/29/2025, 3:43 AM