Skip to content

Commit

Permalink
add to CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kwindla committed May 19, 2024
1 parent 6637795 commit 7ffb10d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion src/pipecat/processors/aggregators/openai_llm_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def get_messages(self) -> List[ChatCompletionMessageParam]:

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
Expand Down

0 comments on commit 7ffb10d

Please sign in to comment.