changelog: add PR prefix to PR link

This commit is contained in:
Aleix Conchillo Flaqué
2025-12-17 11:15:28 -08:00
committed by Mark Backman
parent 491d298c10
commit 92970c7873
2 changed files with 81 additions and 73 deletions

View File

@@ -67,6 +67,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added to `AWSNovaSonicLLMService` functionality related to the new (and now - Added to `AWSNovaSonicLLMService` functionality related to the new (and now
default) Nova 2 Sonic model (`"amazon.nova-2-sonic-v1:0"`): default) Nova 2 Sonic model (`"amazon.nova-2-sonic-v1:0"`):
- Added the `endpointing_sensitivity` parameter to control how quickly the - Added the `endpointing_sensitivity` parameter to control how quickly the
model decides the user has stopped speaking. model decides the user has stopped speaking.
- Made the assistant-response-trigger hack a no-op. It's only needed for - Made the assistant-response-trigger hack a no-op. It's only needed for
@@ -75,6 +76,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Ultravox Realtime](https://docs.ultravox.ai) is now a supported - [Ultravox Realtime](https://docs.ultravox.ai) is now a supported
speech-to-speech service. speech-to-speech service.
- Added `UltravoxRealtimeLLMService` for the integration. - Added `UltravoxRealtimeLLMService` for the integration.
- Added `49-ultravox-realtime.py` example (with tool calling). - Added `49-ultravox-realtime.py` example (with tool calling).
(PR [#3227](https://github.com/pipecat-ai/pipecat/pull/3227)) (PR [#3227](https://github.com/pipecat-ai/pipecat/pull/3227))
@@ -128,6 +130,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
APIs (Interactive Avatar and Live Avatar). APIs (Interactive Avatar and Live Avatar).
Using them is as simple as specifying the `service_type` when creating the Using them is as simple as specifying the `service_type` when creating the
`HeyGenVideoService` and the `HeyGenTransport`: `HeyGenVideoService` and the `HeyGenTransport`:
```python ```python
heyGen = HeyGenVideoService( heyGen = HeyGenVideoService(
api_key=os.getenv("HEYGEN_LIVE_AVATAR_API_KEY"), api_key=os.getenv("HEYGEN_LIVE_AVATAR_API_KEY"),
@@ -135,6 +138,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
session=session, session=session,
) )
``` ```
(PR [#3210](https://github.com/pipecat-ai/pipecat/pull/3210)) (PR [#3210](https://github.com/pipecat-ai/pipecat/pull/3210))
- Made `"amazon.nova-2-sonic-v1:0"` the new default model for - Made `"amazon.nova-2-sonic-v1:0"` the new default model for
@@ -148,6 +152,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
(PR [#3214](https://github.com/pipecat-ai/pipecat/pull/3214)) (PR [#3214](https://github.com/pipecat-ai/pipecat/pull/3214))
- Updated default models for: - Updated default models for:
- `GeminiLiveLLMService` to `gemini-2.5-flash-native-audio-preview-12-2025`. - `GeminiLiveLLMService` to `gemini-2.5-flash-native-audio-preview-12-2025`.
- `GeminiLiveVertexLLMService` to `gemini-live-2.5-flash-native-audio`. - `GeminiLiveVertexLLMService` to `gemini-live-2.5-flash-native-audio`.
(PR [#3228](https://github.com/pipecat-ai/pipecat/pull/3228)) (PR [#3228](https://github.com/pipecat-ai/pipecat/pull/3228))
@@ -160,6 +165,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated websocket STT services to use the `WebsocketSTTService` base class. - Updated websocket STT services to use the `WebsocketSTTService` base class.
This base class manages the websocket connection and handles reconnects. This base class manages the websocket connection and handles reconnects.
Updated services: Updated services:
- `AssemblyAISTTService` - `AssemblyAISTTService`
- `AWSTranscribeSTTService` - `AWSTranscribeSTTService`
- `GladiaSTTService` - `GladiaSTTService`
@@ -167,6 +173,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
(PR [#3236](https://github.com/pipecat-ai/pipecat/pull/3236)) (PR [#3236](https://github.com/pipecat-ai/pipecat/pull/3236))
- Changed Inworld's TTS service implementations: - Changed Inworld's TTS service implementations:
- Previously, the HTTP implementation was named `InworldTTSService`. That - Previously, the HTTP implementation was named `InworldTTSService`. That
has been moved to `InworldHttpTTSService`. This service now supports has been moved to `InworldHttpTTSService`. This service now supports
word-timestamp alignment data in both streaming and non-streaming modes. word-timestamp alignment data in both streaming and non-streaming modes.
@@ -181,6 +188,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated the current RTVI version to 1.1.0 to reflect recent additions and - Updated the current RTVI version to 1.1.0 to reflect recent additions and
deprecations. deprecations.
- New RTVI Messages: `send-text` and `bot-output` - New RTVI Messages: `send-text` and `bot-output`
- Deprecated Messages: `append-to-context` and `bot-transcription` - Deprecated Messages: `append-to-context` and `bot-transcription`
(PR [#3248](https://github.com/pipecat-ai/pipecat/pull/3248)) (PR [#3248](https://github.com/pipecat-ai/pipecat/pull/3248))

View File

@@ -4,7 +4,8 @@
### {{ definitions[category]['name'] }} ### {{ definitions[category]['name'] }}
{% for text, values in sections[section][category].items() %} {% for text, values in sections[section][category].items() %}
{{ text }} ({{ values|join(', ') }}) {{ text }}
(PR {{ values|join(', ') }})
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}
@@ -13,4 +14,3 @@ No significant changes.
{% endif %} {% endif %}
{% endfor %} {% endfor %}