aixblock-voice-ai-deepgram
Version:
A React component for real-time transcription and voice agent interactions using Deepgram APIs
29 lines (28 loc) • 600 B
TypeScript
export interface IConfigData {
auth: string;
voice: string;
greeting: string;
language: string;
thinkModel: string;
listenModel: string;
instructions: string;
thinkProvider: string;
provider: {
baseUrl: string;
token: string;
};
}
export declare class ConfigData implements IConfigData {
auth: string;
voice: string;
greeting: string;
language: string;
thinkModel: string;
listenModel: string;
instructions: string;
thinkProvider: string;
provider: {
baseUrl: string;
token: string;
};
}