-
Notifications
You must be signed in to change notification settings - Fork 599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[draft] Gemini realtime for 1.0 #1420
base: dev-1.0
Are you sure you want to change the base?
Conversation
|
livekit-plugins/livekit-plugins-google/livekit/plugins/google/beta/realtime/realtime_api.py
Outdated
Show resolved
Hide resolved
def _on_agent_speech_done(self, content: TranscriptionContent) -> None: | ||
if not self._is_interrupted and content.response_id and content.text: | ||
self.emit( | ||
"agent_speech_transcription_completed", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't have those events anymore. This isn't supported yet by the baseclass
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I need to think more about it but I think we should add conversation_item_added
and conversation_item_removed
events
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That makes sense
No description provided.