/opt/canhelp/node_modules/openai/beta/realtime
Edit: /opt/canhelp/node_modules/openai/beta/realtime/websocket.d.ts (1491B)
import { AzureOpenAI, OpenAI } from "../../index.js";
import type { RealtimeClientEvent } from "../../resources/beta/realtime/realtime.js";
import { OpenAIRealtimeEmitter } from "./internal-base.js";
type _WebSocket = typeof globalThis extends ({
WebSocket: infer ws extends abstract new (...args: any) => any;
}) ? InstanceType
: any;
export declare class OpenAIRealtimeWebSocket extends OpenAIRealtimeEmitter {
url: URL;
socket: _WebSocket;
constructor(props: {
model: string;
dangerouslyAllowBrowser?: boolean;
/**
* Callback to mutate the URL, needed for Azure.
* @internal
*/
onURL?: (url: URL) => void;
/** Indicates the token was resolved by the factory just before connecting. @internal */
__resolvedApiKey?: boolean;
}, client?: Pick);
static create(client: Pick, props: {
model: string;
dangerouslyAllowBrowser?: boolean;
}): Promise;
static azure(client: Pick, options?: {
deploymentName?: string;
dangerouslyAllowBrowser?: boolean;
}): Promise;
send(event: RealtimeClientEvent): void;
close(props?: {
code: number;
reason: string;
}): void;
}
export {};
//# sourceMappingURL=websocket.d.ts.map