Overview
Large Language Models (LLMs) power the conversational intelligence in your AI agents. They process user input, invoke tools, and generate responses. Agora supports multiple LLM providers, allowing you to choose the best model for your specific requirements.
Integration steps
To integrate the LLM of your choice, follow these steps:
- Choose your LLM provider from the Supported LLMs table
- Obtain an API key from the provider's console
- Copy the sample configuration for your chosen provider
- Replace
<api_key>
with your actual API key - Customize the
system_messages
for your use case - Specify the configuration in the request body as
properties
>llm
when Starting a conversational AI agent
Supported LLMs
Conversational AI Engine currently supports the following LLMs:
Custom LLMs
You can integrate any LLM that provides an OpenAI-compatible REST API interface. Your custom service must handle requests and responses in the OpenAI API format. For implementation details and requirements, see the Custom LLM integration guide.