GroqCloud 的所有 Whisper 模型每天免费使用最多 28800 秒音频!
whisper-large-v3
distil-whisper-large-v3-en
- 优化版本的 whisper-large-v3
在配置集成之前,必须先安装 custom_integration
。你可以通过 HACS 或手动方式进行安装。
-
复制 这个 URL 并粘贴到你的 HACS 自定义仓库中:
https://github.com/knoop7/groqcloud_whisper
-
安装 💻
OpenAI Whisper Cloud
集成 -
重启 🔁 Home Assistant
- 下载 这个仓库
- 复制
custom_components
文件夹中的所有内容到你的 Home Assistant 的custom_components
文件夹中。 - 重启 Home Assistant
你可以配置以下参数:
api_key
: (必填) API 密钥proxy
: (必填) 代理地址,需要搭配容器镜像temperature
: (可选) 采样温度,范围在 0 到 1 之间。默认值0.4
prompt
: (可选) 用于提高语音识别的准确性,特别是词汇或名称。默认值""
提供一个由逗号,
分隔的词汇或名称列表
示例:"open, close, Chat GPT-3, DALL·E"
。
现在你可以通过 Home Assistant 仪表盘进行设置(不支持 YAML 配置)。
docker pull ghcr.io/knoop7/ha-openai-whisper-stt-api/groq-proxy2:20240830
docker run -d -p 8020:8020 \
-e HOST="0.0.0.0" \
-e PORT="8020" \
-e PROXY_URL="" \
-e AUDIO_URL="https://api.groq.com/openai/v1/audio/transcriptions" \
-e TIMEOUT="60" \
ghcr.io/knoop7/ha-openai-whisper-stt-api/groq-proxy2:20240830
docker run -d
: 以后台模式运行容器. 🖥️-p 8020:8020
: 将主机的 8020 端口映射到容器的 8020 端口. 🔄-e HOST="0.0.0.0"
: 设置容器内的环境变量HOST
为0.0.0.0
,使容器监听所有网络接口. 🌐-e PORT="8020"
: 设置容器内的环境变量PORT
为8020
。🔢-e PROXY_URL=""
: 设置容器内的环境变量PROXY_URL
为""
,用于设置代理地址,这里为空. 🕵️♂️-e AUDIO_URL="https://api.groq.com/openai/v1/audio/transcriptions"
: 设置容器内的环境变量AUDIO_URL
为https://api.groq.com/openai/v1/audio/transcriptions
,指定音频转文字的 API 地址. 🎤-e TIMEOUT="60"
: 设置容器内的环境变量TIMEOUT
为60
,表示超时时间为 60 秒. ⏳