add to CHANGELOG.md

This commit is contained in:
Kwindla Hultman Kramer
2024-05-19 12:44:45 -07:00
parent 66377954cb
commit 7ffb10d7f5
2 changed files with 10 additions and 1 deletions

View File

@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added `google.generativeai` model support, including vision. This new `google` service defaults to using
`gemini-1.5-flash-latest`. Example in `examples/foundational/12a-describe-video-gemini-flash.py`.
- Added vision support to `openai` service. Example in
`examples/foundational/12a-describe-video-gemini-flash.py`.
## [Unreleased]
### Added
- Added initial interruptions support. The assistant contexts (or aggregators)
should now be placed after the output transport. This way, only the completed
spoken context is added to the assistant context.

View File

@@ -91,7 +91,6 @@ class OpenAILLMContext:
def get_messages_json(self) -> str:
return json.dumps(self.messages, cls=CustomEncoder)
# return json.dumps(self.messages)
def set_tool_choice(
self, tool_choice: ChatCompletionToolChoiceOptionParam | NotGiven