fix(openai): omit realtime transcription session type

This commit is contained in:
Vincent Koc
2026-05-03 16:54:45 -07:00
parent de82d17de2
commit d057a308f3
2 changed files with 0 additions and 4 deletions

View File

@@ -54,7 +54,6 @@ type SentRealtimeEvent = {
type: string;
audio?: string;
session?: {
type?: string;
audio?: {
input?: {
format?: { type?: string };
@@ -180,7 +179,6 @@ describe("buildOpenAIRealtimeTranscriptionProvider", () => {
{
type: "transcription_session.update",
session: {
type: "transcription",
audio: {
input: {
format: { type: "audio/pcmu" },
@@ -209,7 +207,6 @@ describe("buildOpenAIRealtimeTranscriptionProvider", () => {
{
type: "transcription_session.update",
session: {
type: "transcription",
audio: {
input: {
format: { type: "audio/pcmu" },

View File

@@ -149,7 +149,6 @@ function createOpenAIRealtimeTranscriptionSession(
transport.sendJson({
type: "transcription_session.update",
session: {
type: "transcription",
audio: {
input: {
format: {