diff --git a/README.md b/README.md
index ce4b8bd7f..6c6e9ed75 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,7 @@ The following plugins are available today:
| Plugin | Features |
| ---------------------------------------------------------------------------------- | ------------------------------- |
+| [livekit-plugins-anthropic](https://pypi.org/project/livekit-plugins-anthropic/) | LLM |
| [livekit-plugins-azure](https://pypi.org/project/livekit-plugins-azure/) | STT, TTS |
| [livekit-plugins-cartesia](https://pypi.org/project/livekit-plugins-cartesia/) | TTS |
| [livekit-plugins-deepgram](https://pypi.org/project/livekit-plugins-deepgram/) | STT |
@@ -70,6 +71,37 @@ The following plugins are available today:
| [livekit-plugins-openai](https://pypi.org/project/livekit-plugins-openai/) | LLM, STT, TTS |
| [livekit-plugins-silero](https://pypi.org/project/livekit-plugins-silero/) | VAD |
+## Using LLM models
+
+Agents framework supports a wide range of LLMs and hosting providers.
+
+### OpenAI-compatible models
+
+Most LLM providers offer an OpenAI-compatible API, which can be used with the `livekit-plugins-openai` plugin.
+
+```python
+from livekit.plugins.openai.llm import LLM
+```
+
+- OpenAI: `LLM(model="gpt-4o")`
+- Azure: `LLM.with_azure(azure_endpoint="", azure_deployment="")`
+- Fireworks: `LLM.with_fireworks(api_key="", model="")`
+- Groq: `LLM.with_groq(api_key="", model="")`
+- OctoAI: `LLM.with_octo(api_key="", model="")`
+- Ollama: `LLM.with_ollama(base_url="http://localhost:11434/v1", model="")`
+- Perplexity: `LLM.with_perplexity(api_key="", model="")`
+- TogetherAI: `LLM.with_together(api_key="", model="")`
+
+### Anthropic Claude
+
+Anthropic Claude can be used with `livekit-plugins-anthropic` plugin.
+
+```python
+from livekit.plugins.anthropic.llm import LLM
+
+myllm = LLM(model="claude-3-opus-20240229")
+```
+
## Concepts
- **Agent**: A function that defines the workflow of a programmable, server-side participant. This is your application code.
@@ -153,7 +185,9 @@ class MyPlugin(Plugin):
```
+
LiveKit Ecosystem | |
---|---|
Realtime SDKs | React Components · Browser · Swift Components · iOS/macOS/visionOS · Android · Flutter · React Native · Rust · Node.js · Python · Unity (web) · Unity (beta) |