Skip to content
Merged
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
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Added NVIDIA SageMaker STT and TTS service options:
- `NvidiaSageMakerSTTService`
- `NvidiaSageMakerTTSService`

### Changed

- Bumped the generated server template minimum Python version from 3.10 to
3.11.

- Bumped client template dependencies:
- `@pipecat-ai/client-js` to 1.8.0 across the vanilla-js-vite, react-vite,
and react-nextjs templates.
- `@pipecat-ai/client-react` to 1.4.0 across the react-vite and react-nextjs
templates.
- `@pipecat-ai/voice-ui-kit` to 0.10.0 in the react-vite and react-nextjs
- `@pipecat-ai/voice-ui-kit` to 0.11.0 in the react-vite and react-nextjs
templates.
- `"@pipecat-ai/small-webrtc-transport"` to 1.10.1 across the vanilla-js-vite,
react-vite, and react-nextjs templates.

## [1.1.0] - 2026-04-29

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Sound/Audio",
Expand All @@ -30,7 +30,7 @@ dependencies = [
"jinja2>=3.1.0,<4",
"questionary>=2.0.0,<3",
"ruff>=0.12.1,<1",
"pipecatcloud>=0.4.4"
"pipecatcloud>=0.7.1"
]

[project.urls]
Expand All @@ -52,7 +52,7 @@ dev = [
"pre-commit~=4.5.1",
"build~=1.4.0",
# Pipecat with all service extras for auto-generating imports and configs
"pipecat-ai[aic,anthropic,assemblyai,asyncai,aws,aws-nova-sonic,azure,camb,cartesia,cerebras,daily,deepseek,deepgram,elevenlabs,fal,fireworks,fish,gladia,google,gradium,groq,heygen,hume,inworld,kokoro,lmnt,mistral,moondream,neuphonic,novita,nvidia,openai,openrouter,perplexity,piper,qwen,resembleai,rime,sagemaker,sambanova,sarvam,silero,simli,smallest,soniox,speechmatics,tavus,together,ultravox,webrtc,websocket,xai]==1.1.0",
"pipecat-ai[aic,anthropic,assemblyai,asyncai,aws,aws-nova-sonic,azure,camb,cartesia,cerebras,daily,deepseek,deepgram,elevenlabs,fal,fireworks,fish,gladia,google,gradium,groq,heygen,hume,inworld,kokoro,lmnt,mistral,moondream,neuphonic,novita,nvidia,openai,openrouter,perplexity,piper,qwen,resembleai,rime,sagemaker,sambanova,sarvam,silero,simli,smallest,soniox,speechmatics,tavus,together,ultravox,webrtc,websocket,xai]==1.2.0",
"tomli>=2.0.0; python_version<'3.11'", # TOML parsing for tests
"setuptools~=78.1.1",
"setuptools_scm~=8.3.1",
Expand Down
15 changes: 15 additions & 0 deletions src/pipecat_cli/registry/_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@
"groq_stt": 'GroqSTTService(api_key=os.getenv("GROQ_API_KEY"))',
"mistral_stt": 'MistralSTTService(api_key=os.getenv("MISTRAL_API_KEY"))',
"nvidia_stt": 'NvidiaSTTService(api_key=os.getenv("NVIDIA_API_KEY"))',
"nvidia_sagemaker_stt": (
"NvidiaSageMakerSTTService(\n"
' endpoint_name=os.getenv("NVIDIA_SAGEMAKER_STT_ENDPOINT_NAME"),\n'
' region=os.getenv("NVIDIA_SAGEMAKER_STT_REGION")\n'
" )\n"
),
"openai_stt": 'OpenAISTTService(api_key=os.getenv("OPENAI_API_KEY"))',
"openai_realtime_stt": 'OpenAIRealtimeSTTService(api_key=os.getenv("OPENAI_API_KEY"))',
"sarvam_stt": (
Expand Down Expand Up @@ -463,6 +469,15 @@
" ),\n"
" )\n"
),
"nvidia_sagemaker_tts": (
"NvidiaSageMakerTTSService(\n"
' endpoint_name=os.getenv("NVIDIA_SAGEMAKER_TTS_ENDPOINT_NAME"),\n'
' region=os.getenv("NVIDIA_SAGEMAKER_TTS_REGION"),\n'
" settings=NvidiaSageMakerTTSService.Settings(\n"
' voice=os.getenv("NVIDIA_SAGEMAKER_TTS_VOICE_ID"),\n'
" ),\n"
" )\n"
),
"openai_tts": (
"OpenAITTSService(\n"
' api_key=os.getenv("OPENAI_API_KEY"),\n'
Expand Down
6 changes: 6 additions & 0 deletions src/pipecat_cli/registry/_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@
"groq_stt": ["from pipecat.services.groq.stt import GroqSTTService"],
"mistral_stt": ["from pipecat.services.mistral.stt import MistralSTTService"],
"nvidia_stt": ["from pipecat.services.nvidia.stt import NvidiaSTTService"],
"nvidia_sagemaker_stt": [
"from pipecat.services.nvidia.sagemaker.stt import NvidiaSageMakerSTTService"
],
"openai_stt": ["from pipecat.services.openai.stt import OpenAISTTService"],
"openai_realtime_stt": ["from pipecat.services.openai.stt import OpenAIRealtimeSTTService"],
"sarvam_stt": ["from pipecat.services.sarvam.stt import SarvamSTTService"],
Expand Down Expand Up @@ -148,6 +151,9 @@
"mistral_tts": ["from pipecat.services.mistral.tts import MistralTTSService"],
"neuphonic_tts": ["from pipecat.services.neuphonic.tts import NeuphonicTTSService"],
"nvidia_tts": ["from pipecat.services.nvidia.tts import NvidiaTTSService"],
"nvidia_sagemaker_tts": [
"from pipecat.services.nvidia.sagemaker.tts import NvidiaSageMakerTTSService"
],
"openai_tts": ["from pipecat.services.openai.tts import OpenAITTSService"],
"piper_tts": ["from pipecat.services.piper.tts import PiperTTSService"],
"resemble_tts": ["from pipecat.services.resembleai.tts import ResembleAITTSService"],
Expand Down
17 changes: 17 additions & 0 deletions src/pipecat_cli/registry/service_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,14 @@ class ServiceRegistry:
env_prefix="NVIDIA",
include_params=["api_key"],
),
ServiceDefinition(
value="nvidia_sagemaker_stt",
label="NVIDIA SageMaker",
package="pipecat-ai[nvidia,sagemaker]",
class_name=["NvidiaSageMakerSTTService"],
env_prefix="NVIDIA_SAGEMAKER_STT",
include_params=["endpoint_name", "region"],
),
ServiceDefinition(
value="openai_stt",
label="OpenAI (Whisper)",
Expand Down Expand Up @@ -845,6 +853,15 @@ class ServiceRegistry:
include_params=["api_key"],
settings_params=["voice"],
),
ServiceDefinition(
value="nvidia_sagemaker_tts",
label="NVIDIA SageMaker",
package="pipecat-ai[nvidia,sagemaker]",
class_name=["NvidiaSageMakerTTSService"],
env_prefix="NVIDIA_SAGEMAKER_TTS",
include_params=["endpoint_name", "region"],
settings_params=["voice"],
),
ServiceDefinition(
value="openai_tts",
label="OpenAI TTS",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"@pipecat-ai/client-react": "^1.4.0",
{%- for transport in transports %}
{%- if transport.value == 'daily' %}
"@pipecat-ai/daily-transport": "^1.6.1",
"@pipecat-ai/daily-transport": "^1.6.3",
{%- elif transport.value == 'smallwebrtc' %}
"@pipecat-ai/small-webrtc-transport": "^1.10.0",
"@pipecat-ai/small-webrtc-transport": "^1.10.1",
{%- endif %}
{%- endfor %}
"@pipecat-ai/voice-ui-kit": "^0.10.0",
"@pipecat-ai/voice-ui-kit": "^0.11.0",
"next": "^16",
"react": "^19",
"react-dom": "^19"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"@pipecat-ai/client-react": "^1.4.0",
{%- for transport in transports %}
{%- if transport.value == 'daily' %}
"@pipecat-ai/daily-transport": "^1.6.1",
"@pipecat-ai/daily-transport": "^1.6.3",
{%- elif transport.value == 'smallwebrtc' %}
"@pipecat-ai/small-webrtc-transport": "^1.10.0",
"@pipecat-ai/small-webrtc-transport": "^1.10.1",
{%- endif %}
{%- endfor %}
"@pipecat-ai/voice-ui-kit": "^0.10.0",
"@pipecat-ai/voice-ui-kit": "^0.11.0",
"react": "^19",
"react-dom": "^19"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"@pipecat-ai/client-js": "^1.8.0"
{%- for transport in transports -%}
{%- if transport.value == 'daily' %},
"@pipecat-ai/daily-transport": "^1.6.1"
"@pipecat-ai/daily-transport": "^1.6.3"
{%- elif transport.value == 'smallwebrtc' %},
"@pipecat-ai/small-webrtc-transport": "^1.10.0"
"@pipecat-ai/small-webrtc-transport": "^1.10.1"
{%- endif %}
{%- endfor %}
},
Expand Down
15 changes: 14 additions & 1 deletion src/pipecat_cli/templates/server/env.example.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,19 @@ GROQ_VOICE_ID= # "autumn"
NVIDIA_API_KEY=
NVIDIA_MODEL=

{% endif %}
{% if stt_service == 'nvidia_sagemaker_stt' %}
# NVIDIA SageMaker (STT)
NVIDIA_SAGEMAKER_STT_ENDPOINT_NAME=
NVIDIA_SAGEMAKER_STT_REGION=

{% endif %}
{% if tts_service == 'nvidia_sagemaker_tts' %}
# NVIDIA SageMaker (TTS)
NVIDIA_SAGEMAKER_TTS_ENDPOINT_NAME=
NVIDIA_SAGEMAKER_TTS_REGION=
NVIDIA_SAGEMAKER_TTS_VOICE_ID= # "Magpie-Multilingual.EN-US.Isabella"

{% endif %}
{% if stt_service == 'openai_stt' or stt_service == 'openai_realtime_stt' or llm_service == 'openai_llm' or llm_service == 'openai_responses_llm' or tts_service == 'openai_tts' or realtime_service == 'openai_realtime' %}
# OpenAI (STT/LLM/TTS/Realtime)
Expand Down Expand Up @@ -427,4 +440,4 @@ TAVUS_REPLICA_ID=
SIMLI_API_KEY=
SIMLI_FACE_ID= # optional

{% endif %}
{% endif %}
2 changes: 1 addition & 1 deletion src/pipecat_cli/templates/server/pyproject.toml.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "{{ project_name }}"
version = "0.1.0"
description = "Voice AI bot built with Pipecat"
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"{{ pipecat_dependency }}",
{% if deploy_to_cloud %}
Expand Down
Loading
Loading