@openai/agents-realtime
Version:
The OpenAI Agents SDK is a lightweight yet powerful framework for building multi-agent workflows. This package contains the logic for building realtime voice agents on the server or in the browser.
13 lines • 793 B
JavaScript
import * as utilImport from "./utils.js";
export { RealtimeAgent } from "./realtimeAgent.js";
export { RealtimeSession, } from "./realtimeSession.js";
export { OpenAIRealtimeWebRTC, } from "./openaiRealtimeWebRtc.js";
export { OpenAIRealtimeWebSocket, } from "./openaiRealtimeWebsocket.js";
export { OpenAIRealtimeBase, DEFAULT_OPENAI_REALTIME_MODEL, DEFAULT_OPENAI_REALTIME_SESSION_CONFIG, } from "./openaiRealtimeBase.js";
export const utils = {
base64ToArrayBuffer: utilImport.base64ToArrayBuffer,
arrayBufferToBase64: utilImport.arrayBufferToBase64,
getLastTextFromAudioOutputMessage: utilImport.getLastTextFromAudioOutputMessage,
};
export { ModelBehaviorError, OutputGuardrailTripwireTriggered, tool, UserError, } from '@openai/agents-core';
//# sourceMappingURL=index.js.map