realtime-voice-ai
Version:
A powerful, fully configurable React component for real-time voice chat powered by OpenAI's Realtime API. Create natural conversations with AI using advanced voice recognition and synthesis.
17 lines (14 loc) • 424 B
TypeScript
declare module 'realtime-voicechat' {
import React from 'react';
interface VoiceChatTriggerProps {
sessionEndpoint?: string;
name?: string;
voice?: string;
botType?: string;
uiVersion?: string;
customUI?: boolean;
[key: string]: any; // for extra props
}
export const VoiceChatTrigger: React.FC<VoiceChatTriggerProps>;
// export other components similarly if needed
}