Skip to content
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

Transcribe initial server response #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions openai_realtime_client/client/realtime_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,9 @@ async def create_response(self, functions: Optional[List[Dict[str, Any]]] = None
if functions:
event["response"]["tools"] = functions

# Make sure we print the transcript for the response
self._print_input_transcript = True

await self.ws.send(json.dumps(event))

async def send_function_result(self, call_id: str, result: Any) -> None:
Expand Down