v1.3.3
blacklanternsecurity/bbotv1.3.3May 23, 2026by LauraGPT
Full Release Notes
## Highlights
This release makes FunASR a drop-in speech backend for AI agents.
### New: `funasr-server` CLI
```bash
pip install funasr fastapi uvicorn python-multipart
funasr-server --device cuda
```
One command starts an OpenAI-compatible `/v1/audio/transcriptions` endpoint.
### New: MCP Server
AI assistants (Claude, Cursor, Windsurf) can now transcribe audio directly.
### New: OpenAI-Compatible API
Works with **any** agent framework: LangChain, AutoGen, CrewAI, Dify, Flowise, Open WebUI.
```python
from openai import OpenAI
client = OpenAI(base_url="http://localhost:8000/v1", api_key="x")
result = client.audio.transcriptions.create(model="sensevoice", file=open("a.wav","rb"))
```
### Bug Fixes
- Fixed `hub="hf"` parameter propagation to sub-models (v1.3.2)
- Fixed Qwen3-ASR ImportError masking
### Upgrade
```bash
pip install --upgrade funasr
```
### Links
- [Agent Integration Guide](https://modelscope.github.io/FunASR/agent.html)
- [OpenAI API Docs](https://github.com/modelscope/FunASR/tree/main/examples/openai_api)
- [MCP Server Docs](https://github.com/modelscope/FunASR/tree/main/examples/mcp_server)
- [Benchmark](https://modelscope.github.io/FunASR/benchmark.html)