Files
openclaw/docs/providers/senseaudio.md
Santhi Prakash 445774d85e [AI-assisted] docs(senseaudio): fix broken Docs URL to docs.senseaudio.cn (#114021)
The SenseAudio provider guide linked its Docs row to
https://senseaudio.cn/docs, which returns 404. The SenseAudio platform
homepage itself links to https://docs.senseaudio.cn (200), so point the
Docs row there instead.
2026-07-27 03:56:03 -04:00

2.6 KiB

summary, read_when, title
summary read_when title
SenseAudio batch speech-to-text for inbound voice notes
You want SenseAudio speech-to-text for audio attachments
You need the SenseAudio API key env var or audio config path
SenseAudio

SenseAudio transcribes inbound audio and voice-note attachments through OpenClaw's shared tools.media.audio pipeline. OpenClaw posts multipart audio to the OpenAI-compatible transcription endpoint and injects the returned text as {{Transcript}} plus an [Audio] block.

Property Value
Provider id senseaudio
Plugin bundled, enabledByDefault: true
Contract mediaUnderstandingProviders (audio)
Auth env var SENSEAUDIO_API_KEY
Default model senseaudio-asr-pro-1.5-260319
Default URL https://api.senseaudio.cn/v1
Website senseaudio.cn
Docs docs.senseaudio.cn

Getting started

```bash export SENSEAUDIO_API_KEY="..." ``` ```json5 { tools: { media: { audio: { enabled: true, models: [{ provider: "senseaudio", model: "senseaudio-asr-pro-1.5-260319" }], }, }, }, } ``` Send an audio message through any connected channel. OpenClaw uploads the audio to SenseAudio and uses the transcript in the reply pipeline.

Options

Option Path Description
model tools.media.models[].model SenseAudio ASR model id
language tools.media.models[].language Optional language hint
prompt tools.media.models[].prompt Optional transcription prompt
baseUrl tools.media.models[].baseUrl Override the OpenAI-compatible base
headers tools.media.models[].headers Extra request headers
SenseAudio is batch STT only in OpenClaw. Voice Call realtime transcription continues to use providers with streaming STT support.