Skip to content

Commit 9391848

Browse files
committed
readme
1 parent e36e07c commit 9391848

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ A complete starter project for building voice AI apps with [LiveKit Agents for N
88

99
The starter project includes:
1010

11-
- A simple voice AI assistant based on the [AI Voice Assistant quickstart](https://docs.livekit.io/agents/v0/quickstarts/voice-agent/)
12-
- Voice AI pipeline based on [OpenAI](https://docs.livekit.io/agents/v0/integrations/openai/overview/#llm), [Cartesia](https://docs.livekit.io/agents/v0/integrations/cartesia/#tts), and [Deepgram](https://docs.livekit.io/agents/v0/integrations/deepgram/#stt)
13-
- Easily integrate your preferred [LLM](https://docs.livekit.io/agents/v0/integrations/overview/#llm-integrations), [STT](https://docs.livekit.io/agents/v0/integrations/overview/#stt-integrations), and [TTS](https://docs.livekit.io/agents/v0/integrations/overview/#tts-integrations) instead, or swap to a realtime model like the [OpenAI Realtime API](https://docs.livekit.io/agents/v0/integrations/openai/realtime/)
14-
- [LiveKit Turn Detector](https://docs.livekit.io/agents/v0/voice-agent/#turn-detection-model) for contextually-aware speaker detection, with multilingual support
11+
- A simple voice AI assistant based on the [AI Voice Assistant quickstart](https://docs.livekit.io/agents/start/voice-ai/)
12+
- Voice AI pipeline based on [OpenAI](https://docs.livekit.io/agents/integrations/llm/openai/), [Cartesia](https://docs.livekit.io/agents/integrations/tts/cartesia/), and [Deepgram](https://docs.livekit.io/agents/integrations/stt/deepgram/)
13+
- Easily integrate your preferred [LLM](https://docs.livekit.io/agents/integrations/llm/), [STT](https://docs.livekit.io/agents/integrations/stt/), and [TTS](https://docs.livekit.io/agents/integrations/tts/) instead, or swap to a realtime model like the [OpenAI Realtime API](https://docs.livekit.io/agents/integrations/realtime/openai)
14+
- [LiveKit Turn Detector](https://docs.livekit.io/agents/build/turns/turn-detector/) for contextually-aware speaker detection, with multilingual support
1515
- [LiveKit Cloud enhanced noise cancellation](https://docs.livekit.io/home/cloud/noise-cancellation/)
1616
- Integrated [metrics and logging](https://docs.livekit.io/agents/v0/build/metrics/)
1717

18-
This starter app is compatible with any [custom web/mobile frontend](https://docs.livekit.io/agents/v0/voice-agent/client-apps/) or [SIP-based telephony](https://docs.livekit.io/agents/v0/voice-agent/telephony/).
18+
This starter app is compatible with any [custom web/mobile frontend](https://docs.livekit.io/agents/start/frontend/) or [SIP-based telephony](https://docs.livekit.io/agents/start/telephony/).
1919

2020
## Dev Setup
2121

@@ -33,9 +33,9 @@ Set up the environment by copying `.env.example` to `.env.local` and filling in
3333
- `LIVEKIT_URL`: Use [LiveKit Cloud](https://cloud.livekit.io/) or [run your own](https://docs.livekit.io/home/self-hosting/)
3434
- `LIVEKIT_API_KEY`
3535
- `LIVEKIT_API_SECRET`
36-
- `OPENAI_API_KEY`: [Get a key](https://platform.openai.com/api-keys) or use your [preferred LLM provider](https://docs.livekit.io/agents/v0/integrations/overview/#llm-integrations)
37-
- `DEEPGRAM_API_KEY`: [Get a key](https://console.deepgram.com/) or use your [preferred STT provider](https://docs.livekit.io/agents/v0/integrations/overview/#stt-integrations)
38-
- `CARTESIA_API_KEY`: [Get a key](https://play.cartesia.ai/keys) or use your [preferred TTS provider](https://docs.livekit.io/agents/v0/integrations/overview/#tts-integrations)
36+
- `OPENAI_API_KEY`: [Get a key](https://platform.openai.com/api-keys) or use your [preferred LLM provider](https://docs.livekit.io/agents/integrations/llm/)
37+
- `DEEPGRAM_API_KEY`: [Get a key](https://console.deepgram.com/) or use your [preferred STT provider](https://docs.livekit.io/agents/integrations/stt/)
38+
- `CARTESIA_API_KEY`: [Get a key](https://play.cartesia.ai/keys) or use your [preferred TTS provider](https://docs.livekit.io/agents/integrations/tts/)
3939

4040
You can load the LiveKit environment automatically using the [LiveKit CLI](https://docs.livekit.io/home/cli/cli-setup):
4141

@@ -45,7 +45,7 @@ lk app env -w .env.local
4545

4646
## Run the agent
4747

48-
Before your first run, you must download certain models such as [Silero VAD](https://docs.livekit.io/agents/v0/voice-agent/#voice-activity-detection-vad-/) and the [LiveKit turn detector](https://docs.livekit.io/agents/v0/voice-agent/#turn-detection-model):
48+
Before your first run, you must download certain models such as [Silero VAD](https://docs.livekit.io/agents/integrations/vad/) and the [LiveKit turn detector](https://docs.livekit.io/agents/build/turns/turn-detector/):
4949

5050
```console
5151
pnpm run download-files
@@ -75,9 +75,9 @@ Get started quickly with our pre-built frontend starter apps, or add telephony s
7575
| **React Native** | [`livekit-examples/voice-assistant-react-native`](https://github.com/livekit-examples/voice-assistant-react-native) | Native mobile app with React Native & Expo |
7676
| **Android** | [`livekit-examples/agent-starter-android`](https://github.com/livekit-examples/agent-starter-android) | Native Android app with Kotlin & Jetpack Compose |
7777
| **Web Embed** | [`livekit-examples/agent-starter-embed`](https://github.com/livekit-examples/agent-starter-embed) | Voice AI widget for any website |
78-
| **Telephony** | [📚 Documentation](https://docs.livekit.io/agents/v0/voice-agent/telephony/) | Add inbound or outbound calling to your agent |
78+
| **Telephony** | [📚 Documentation](https://docs.livekit.io/agents/start/telephony/) | Add inbound or outbound calling to your agent |
7979

80-
For advanced customization, see the [complete frontend guide](https://docs.livekit.io/agents/v0/voice-agent/client-apps/).
80+
For advanced customization, see the [complete frontend guide](https://docs.livekit.io/agents/start/frontend/).
8181

8282
## Using this template repo for your own project
8383

@@ -89,7 +89,7 @@ Once you've started your own project based on this repo, you should:
8989

9090
## Deploying to production
9191

92-
This project is production-ready and includes a working `Dockerfile`. To deploy it to LiveKit Cloud or another environment, see the [deploying to production](https://docs.livekit.io/agents/v0/deployment/) guide.
92+
This project is production-ready and includes a working `Dockerfile`. To deploy it to LiveKit Cloud or another environment, see the [deploying to production](https://docs.livekit.io/agents/ops/deployment/) guide.
9393

9494
## License
9595

0 commit comments

Comments
 (0)