export type ResponseCreateParams = { instructions: string; modalities?: Array<'audio' | 'text'>; conversation?: 'auto' | 'none'; }; export type ResponseCreateOptions = { instructions?: string; modalities?: Array<'audio' | 'text'>; conversation?: 'auto' | 'none'; }; export type ResponseCreateStrict = Omit & { instructions: string; }; //# sourceMappingURL=Responce.d.ts.map