Update asr library preview

This commit is contained in:
Xin Wang
2026-02-08 23:38:34 +08:00
parent 97e3236e76
commit 4bf2f788ad
5 changed files with 781 additions and 183 deletions

View File

@@ -176,8 +176,13 @@ export interface LLMModel {
export interface ASRModel {
id: string;
name: string;
vendor: 'OpenAI Compatible';
vendor: string;
language: string;
baseUrl: string;
apiKey: string;
modelName?: string;
hotwords?: string[];
enablePunctuation?: boolean;
enableNormalization?: boolean;
enabled?: boolean;
}