Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/services/llm/nim.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ description: "LLM service implementation using NVIDIA's NIM (NVIDIA Inference Mi
To use NVIDIA NIM services, install the required dependencies:

```bash
pip install "pipecat-ai[nim]"
pip install "pipecat-ai[nvidia]"
```

## Prerequisites
Expand Down
2 changes: 1 addition & 1 deletion server/services/stt/riva.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ NVIDIA Riva provides two STT service implementations: `RivaSTTService` for real-
To use NVIDIA Riva services, install the required dependency:

```bash
pip install "pipecat-ai[riva]"
pip install "pipecat-ai[nvidia]"
```

## Prerequisites
Expand Down
6 changes: 3 additions & 3 deletions server/services/supported-services.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Speech-to-Text services receive and audio input and output transcriptions.
| [Gladia](/server/services/stt/gladia) | `pip install "pipecat-ai[gladia]"` |
| [Google](/server/services/stt/google) | `pip install "pipecat-ai[google]"` |
| [Groq (Whisper)](/server/services/stt/groq) | `pip install "pipecat-ai[groq]"` |
| [NVIDIA Riva](/server/services/stt/riva) | `pip install "pipecat-ai[riva]"` |
| [NVIDIA Riva](/server/services/stt/riva) | `pip install "pipecat-ai[nvidia]"` |
| [OpenAI (Whisper)](/server/services/stt/openai) | `pip install "pipecat-ai[openai]"` |
| [SambaNova (Whisper)](/server/services/stt/sambanova) | `pip install "pipecat-ai[sambanova]"` |
| [Sarvam](/server/services/stt/sarvam) | `pip install "pipecat-ai[sarvam]"` |
Expand All @@ -69,7 +69,7 @@ LLMs receive text or audio based input and output a streaming text response.
| [Google Vertex AI](/server/services/llm/google-vertex) | `pip install "pipecat-ai[google]"` |
| [Grok](/server/services/llm/grok) | `pip install "pipecat-ai[grok]"` |
| [Groq](/server/services/llm/groq) | `pip install "pipecat-ai[groq]"` |
| [NVIDIA NIM](/server/services/llm/nim) | `pip install "pipecat-ai[nim]"` |
| [NVIDIA NIM](/server/services/llm/nim) | `pip install "pipecat-ai[nvidia]"` |
| [Ollama](/server/services/llm/ollama) | `pip install "pipecat-ai[ollama]"` |
| [OpenAI](/server/services/llm/openai) | `pip install "pipecat-ai[openai]"` |
| [OpenPipe](/server/services/llm/openpipe) | `pip install "pipecat-ai[openpipe]"` |
Expand Down Expand Up @@ -98,7 +98,7 @@ Text-to-Speech services receive text input and output audio streams or chunks.
| [LMNT](/server/services/tts/lmnt) | `pip install "pipecat-ai[lmnt]"` |
| [MiniMax](/server/services/tts/minimax) | No dependencies required |
| [Neuphonic](/server/services/tts/neuphonic) | `pip install "pipecat-ai[neuphonic]"` |
| [NVIDIA Riva](/server/services/tts/riva) | `pip install "pipecat-ai[riva]"` |
| [NVIDIA Riva](/server/services/tts/riva) | `pip install "pipecat-ai[nvidia]"` |
| [OpenAI](/server/services/tts/openai) | `pip install "pipecat-ai[openai]"` |
| [Piper](/server/services/tts/piper) | No dependencies required |
| [PlayHT](/server/services/tts/playht) | `pip install "pipecat-ai[playht]"` |
Expand Down
2 changes: 1 addition & 1 deletion server/services/tts/riva.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ description: "Text-to-speech service implementation using NVIDIA Riva"
To use NVIDIA Riva services, install the required dependencies:

```bash
pip install "pipecat-ai[riva]"
pip install "pipecat-ai[nvidia]"
```

## Prerequisites
Expand Down