feat: ai voice

This commit is contained in:
pk5ls20
2024-11-02 01:51:57 +08:00
parent a36917e7c0
commit 6ab82739a6
10 changed files with 286 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
export enum AIVoiceChatType {
Unknown = 0,
Sound = 1,
Sing = 2
}
export interface AIVoiceItem {
voiceId: string;
voiceDisplayName: string;
voiceExampleUrl: string;
}
export interface AIVoiceItemList {
category: string;
voices: AIVoiceItem[];
}