Vexa v0.6.0 — Microsoft Teams + WebSockets
Release date: 4 Oct 2025
🎉 What’s new in v0.6
- Microsoft Teams support (alongside Google Meet)
- WebSocket transcript streaming for efficient sub-second delivery
- Numerous reliability and joining improvements from real-world usage of our hosted service
Vexa drops a bot into your online meeting and streams transcripts to your apps in real time.
Platforms
- Google Meet
- Microsoft Teams
Transport
- REST (pull transcripts)
- WebSocket (sub-second streaming)
Run it your way
- Hosted API (start in 5 minutes): [vexa.ai](https://vexa.ai)
- Self-host: [DEPLOYMENT.md](./DEPLOYMENT.md)
Quickstart
Hosted
- Get your API key: [Dashboard → API Keys](https://vexa.ai/dashboard/api-keys)
- Send a bot:
curl -X POST https://api.cloud.vexa.ai/bots \
-H "Content-Type: application/json" \
-H "X-API-Key: <API_KEY>" \
-d '{
"platform": "teams",
"native_meeting_id": "<NUMERIC_MEETING_ID>",
"passcode": "<MEETING_PASSCODE>"
}'- Receive transcripts via REST or WebSocket.
Self-host
git clone https://github.com/Vexa-ai/vexa.git
cd vexa
make all # CPU by default (Whisper tiny)
# For GPU:
make all TARGET=gpu # (Whisper medium)Full guide: [DEPLOYMENT.md](./DEPLOYMENT.md)
Roadmap
- Zoom support (next)
- Direct streaming from web/mobile apps
- Speaker identification
Links
- Website: [vexa.ai](https://vexa.ai)
- Blog tutorial: [Google Meet + n8n workflow](https://vexa.ai/blog/google-meet-transcription-n8n-workflow)
- Discord: [Join here](https://vexa.ai/discord)
Contributing
We ❤️ contributions. Join our [Discord](https://vexa.ai/discord) and open issues/PRs.
Licensed under Apache-2.0 — see [LICENSE](./LICENSE).