Tweak changelog entries describing slate of recent updates to OpenAIRealtimeBetaLLMService

This commit is contained in:
Paul Kompfner
2025-03-18 15:52:11 -04:00
parent e707efbffa
commit 3dd4ef7230

View File

@@ -128,51 +128,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Gemini models. Added foundational example
`14p-function-calling-gemini-vertex-ai.py`.
- Added support in `OpenAIRealtimeBetaLLMService` for the
`conversation.item.input_audio_transcription.delta` server message.
- Added support in `OpenAIRealtimeBetaLLMService` for a slate of new features:
- Added error handling in `OpenAIRealtimeBetaLLMService` for the
`response.done` server message reporting a failure.
- The `'gpt-4o-transcribe-latest'` input audio transcription model.
- The `input_audio_noise_reduction` session property.
- Added support in `OpenAIRealtimeBetaLLMService` for the new
`gpt-4o-transcribe-latest` input audio transcription model.
- Added support in `OpenAIRealtimeBetaLLMService` for the new
`input_audio_noise_reduction` session property.
```python
session_properties = SessionProperties(
# ...
input_audio_noise_reduction=InputAudioNoiseReduction(
type="near_field" # also supported: "far_field"
```python
session_properties = SessionProperties(
# ...
input_audio_noise_reduction=InputAudioNoiseReduction(
type="near_field" # also supported: "far_field"
)
# ...
)
# ...
)
```
```
- Added support in `OpenAIRealtimeBetaLLMService` for the new
`semantic_vad` `turn_detection` session property, which is a more
sophisticated model for detecting when the user has stopped speaking.
- The `'semantic_vad'` `turn_detection` session property value, a more
sophisticated model for detecting when the user has stopped speaking.
- `on_conversation_item_created` and `on_conversation_item_updated`
events to `OpenAIRealtimeBetaLLMService`.
- Added `on_conversation_item_created` and `on_conversation_item_updated`
events to `OpenAIRealtimeBetaLLMService`.
```python
@llm.event_handler("on_conversation_item_created")
async def on_conversation_item_created(llm, item_id, item):
# ...
```python
@llm.event_handler("on_conversation_item_created")
async def on_conversation_item_created(llm, item_id, item):
# ...
@llm.event_handler("on_conversation_item_updated")
async def on_conversation_item_updated(llm, item_id, item):
# `item` may not always be available here
# ...
```
@llm.event_handler("on_conversation_item_updated")
async def on_conversation_item_updated(llm, item_id, item):
# `item` may not always be available here
# ...
```
- The `retrieve_conversation_item(item_id)` method for introspecting a
conversation item on the server.
- Added `retrieve_conversation_item(item_id)` to `OpenAIRealtimeBetaLLMService`.
```python
item = await llm.retrieve_conversation_item(item_id)
```
```python
item = await llm.retrieve_conversation_item(item_id)
```
### Changed
@@ -268,9 +260,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed an issue in `RimeTTSService` where the last line of text sent didn't
result in an audio output being generated.
- Fixed `OpenAIRealtimeBetaLLMService` by adding support for the
`conversation.item.input_audio_transcription.delta` server message, which was
added server-side at some point and not handled client-side.
- Fixed `OpenAIRealtimeBetaLLMService` by adding proper handling for:
- The `conversation.item.input_audio_transcription.delta` server message,
which was added server-side at some point and not handled client-side.
- Errors reported by the `response.done` server message.
### Other