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
33 changes: 33 additions & 0 deletions livekit-plugins/livekit-plugins-fonadalabs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# FonadaLabs TTS plugin for Livekit Agents


A LiveKit plugin that integrates FonadaLabs TTS API using WebSocket, enabling high-quality text-to-speech synthesis with multiple Indian voices in LiveKit agents.

## Features

- 🎙️ **High-Quality TTS**: Uses FonadaLabs TTS API for natural-sounding speech
- 🇮🇳 **Indian Voices**: Multiple Indian voices (Vaanee)
- ⚡ **Real-time Streaming**: WebSocket-based streaming for low-latency audio
- 🔒 **Secure**: API key authentication
- 🚀 **Easy Integration**: Simple plugin interface for LiveKit agents

## Installation

```bash
pip install livekit-plugins-fonadalabs
```
## Pre-requisites

You'll need an API key from FonadaLabs(https://fonadalabs.ai). It can be set as an environment variable: `FONADALABS_API_KEY`


### Available Voices

- **Vaanee** (default)

### Supported Languages

- **Hindi** (default)
- **English**
- **Tamil**
- **Telugu**
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from .tts import TTS

__all__ = ["TTS"]




Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""Logging configuration for FonadaLabs TTS plugin."""

import logging

logger = logging.getLogger("livekit.plugins.fonadalabs")

Loading
Loading