Custom LLM option doesn't have a URL field??!?
# support
v
The URL for your Custom LLM isn't set in the credentials section—it's specified when you create or update an assistant. Use the following JSON structure in your assistant's model configuration to set the endpoint:
Copy code
json
{
  "name": "My Assistant",
  "model": {
    "provider": "custom-llm",
    "url": "<YOUR OPENAI COMPATIBLE ENDPOINT BASE URL>",
    "model": "my-cool-model"
  }
}
Set credentials first, then add the URL in the assistant's model config as shown above. For more details, see the documentation I have found: https://docs.vapi.ai/customization/custom-llm/fine-tuned-openai-models. Source: - [Using Fine-Tuned OpenAI Models](https://docs.vapi.ai/customization/custom-llm/fine-tuned-openai-models)
i
@User but we create the agent using a webhook, what is the field to control the custom LLM url?