Open
Conversation
- Add OpenAIRealtimeLLMSettings configuration section - Deprecate session_properties and model constructor params - Update usage examples to use settings=OpenAIRealtimeLLMSettings(...) pattern - Document bidirectional sync between model/system_instruction and session_properties - Add runtime settings update examples with automatic routing - Update import statements in code examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated documentation update for pipecat PR #3939.
Changes
server/services/s2s/openai.mdxOpenAIRealtimeLLMSettingsconfiguration section documenting the new settings classsettingsparameter toOpenAIRealtimeLLMServiceconfigurationsession_propertiesandmodelconstructor parameters as deprecatedsettings=OpenAIRealtimeLLMSettings(...)patternOpenAIRealtimeLLMSettingsmodel/system_instructionandsession_properties.model/session_properties.instructionsSessionPropertiesfields in settings updatesSummary
PR #3939 introduced a new settings pattern for OpenAI Realtime services, migrating from direct
session_propertiesconstructor parameter to a unifiedsettings=OpenAIRealtimeLLMSettings(...)approach. This brings OpenAI Realtime in line with other Pipecat services that use the settings pattern and enables better runtime configuration management with bidirectional sync between top-level settings and session properties.Gaps identified
None