Update OpenAILLMService subclasses to use the new build_chat_completion_params function

This commit is contained in:
Mark Backman
2025-08-07 11:21:42 -04:00
parent 5c86f8e687
commit 4c029fcfa7
7 changed files with 63 additions and 86 deletions

View File

@@ -106,6 +106,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
`LLMUserContextAggregator` and `LLMAssistantResponseAggregator` (or
LLM-specific subclasses thereof) instead.
## [Unreleased]
### Added
- For `OpenAILLMService` and its subclasses, added the ability to retry
executing a chat completion after a timeout period. The new args are
`timeout` and `retry_on_timeout`. This feature is disabled by default.
## [0.0.78] - 2025-08-07
### Added