Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
2b032fd
added stt/tts
Tushar-ml Dec 21, 2025
1b8f99c
tested tts
Tushar-ml Dec 21, 2025
e1407e3
formatting done
Tushar-ml Dec 21, 2025
eacfc72
removed flush
Tushar-ml Dec 21, 2025
e0d9849
ruff fix
Tushar-ml Dec 21, 2025
8b2739d
Add default models for STT and TTS
simplipratik Dec 22, 2025
d1f4b9a
Fix formatting error
simplipratik Jan 7, 2026
1f2ad42
initial draft for websocket
varadtechx Jan 7, 2026
8e941bd
correct linting
varadtechx Jan 7, 2026
35c576e
corrected websocket
varadtechx Jan 7, 2026
521173c
corrected datatype
varadtechx Jan 7, 2026
c995e9c
Merge pull request #1 from simpli-smart/add/websocket-support
Tushar-ml Jan 7, 2026
6b0d7cb
corrected lint
varadtechx Jan 7, 2026
d00f072
Merge pull request #2 from simpli-smart/add/websocket-support
Tushar-ml Jan 7, 2026
41b0732
alter streaming for whisper
Tushar-ml Jan 8, 2026
f201649
changed ws to wss
Tushar-ml Jan 8, 2026
1e648ae
Merge pull request #3 from simpli-smart/feat/add-llm
Tushar-ml Jan 11, 2026
a0d7b6d
options added
Tushar-ml Jan 14, 2026
b109877
Merge pull request #4 from simpli-smart/tg/patch-1
Tushar-ml Jan 14, 2026
c51452c
Update livekit-plugins/livekit-plugins-simplismart/livekit/plugins/si…
dakshisdakshs Jan 20, 2026
e3af4cc
change on coderabbit
Tushar-ml Jan 21, 2026
e15006f
Merge pull request #5 from simpli-smart/tg/patch-1
Tushar-ml Jan 21, 2026
3583df0
resolve coderabbit review pt2
Tushar-ml Jan 21, 2026
26eb3ef
Merge pull request #6 from simpli-smart/tg/patch-1
Tushar-ml Jan 21, 2026
f113f7e
tested implementation with patch
Tushar-ml Jan 21, 2026
d77247d
Merge pull request #7 from simpli-smart/tg/patch-1
Tushar-ml Jan 21, 2026
4ab22ee
removed llm plugin
Tushar-ml Jan 21, 2026
a2b1b48
Merge pull request #8 from simpli-smart/tg/patch-1
Tushar-ml Jan 21, 2026
f61ed8f
fixed type check
Tushar-ml Jan 21, 2026
161e711
Merge pull request #9 from simpli-smart/tg/patch-1
Tushar-ml Jan 21, 2026
c4e98bc
resolved language
Tushar-ml Jan 21, 2026
8a79150
Merge pull request #10 from simpli-smart/tg/patch-1
Tushar-ml Jan 21, 2026
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
18 changes: 18 additions & 0 deletions livekit-plugins/livekit-plugins-simplismart/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Simplismart Plugin for LiveKit Agents

Support for [Simplismart.ai](https://simplismart.ai)'s voice AI services in LiveKit Agents.

## Features

- **Speech-to-Text (STT)**: Convert audio to text using Simplismart's STT models. See the [STT docs](https://docs.livekit.io/agents/integrations/stt/simplismart/) for more information.
- **Text-to-Speech (TTS)**: Convert text to audio using Simplismart's TTS models. See the [TTS docs](https://docs.livekit.io/agents/integrations/tts/simplismart/) for more information.

## Installation

```bash
pip install livekit-plugins-simplismart
```

## Pre-requisites

You'll need an API key from Simplismart.ai. It can be set as an environment variable: `SIMPLISMART_API_KEY`
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Copyright 2025 LiveKit, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""SimpliSmart plugin for LiveKit Agents

Support for speech-to-text and text-to-speech with [SimpliSmart](https://simplismart.ai/).

SimpliSmart provides high-quality STT and TTS for Indian languages.

For API access, visit https://simplismart.ai/
"""

from .stt import STT
from .tts import TTS
from .version import __version__

__all__ = ["STT", "TTS", "__version__"]


from livekit.agents import Plugin

from .log import logger


class SimplismartPlugin(Plugin):
def __init__(self) -> None:
super().__init__(__name__, __version__, __package__, logger)


Plugin.register_plugin(SimplismartPlugin())

# Cleanup docs of unexported modules
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

for n in NOT_IN_ALL:
__pdoc__[n] = False
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import logging

logger = logging.getLogger("livekit.plugins.simplismart")
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from typing import Literal

TTSModels = Literal["canopylabs/orpheus-3b-0.1-ft", "maya-research/Veena"]

STTModels = Literal[
"openai/whisper-large-v2",
"openai/whisper-large-v3",
"openai/whisper-large-v3-turbo",
]
Loading