Files
config-center/compute/providers/local-whisper.json
xieyuanxiang cc2fb7b9a5 fix: remove irrelevant text-model fields from non-text providers
Remove contextWindow: 0 and maxOutputTokens: 0 from non-text models
(tts, asr, image_gen, video_gen, voice_clone, translation, etc.) and
maxOutputTokens: 0 from embedding/rerank models across kling,
local-whisper, stability, openai, dashscope, google, volcengine,
and zhipu-embedding configs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-24 19:53:57 +08:00

39 lines
817 B
JSON

{
"id": "provider-local-whisper",
"provider": "local-whisper",
"label": "本地 Whisper",
"baseUrl": "http://localhost:8080",
"apiFormat": "openai-completions",
"apiKeyRef": "",
"apiKeyVerified": false,
"enabled": false,
"status": "unconfigured",
"priceCurrency": "USD",
"services": [
"asr"
],
"models": [
{
"modelName": "whisper-large-v3",
"displayName": "Whisper Large V3",
"serviceType": ["asr"],
"description": "本地部署的 Whisper 大模型",
"capabilities": [
"asr",
"multilingual"
],
"extra": {
"maxAudioLength": 7200,
"supportedInputFormats": [
"wav",
"mp3",
"flac",
"ogg",
"webm"
],
"streamingSupported": true
}
}
]
}