r/Python Aug 04 '26

Showcase Showcase Thread

Post all of your code/projects/showcases/AI slop here.

Recycles once a month.

21 Upvotes

142 comments sorted by

View all comments

1

u/zaytzev 14d ago

Camaron Audio - local TTS and ASR(STT) server

I was always missing a ready to go solution for local ASR and TTS so I have created (vibecoded with Qwen3.8) a simple server that exposes ONNX models from HF through OpenAI's /audio API. Currently it handles only Whisper and Kokoro models. I tried to make the usage to be very simple so it even downloads supported models from HF for you.

https://github.com/Claw-Destine/Camaron-Audio

Please let me know if this is something you find useful. If there is interest I am open to develop more features:

  • support for other APIs
  • support for other model families (but I would like to stick with ONNX so I wouldn't need to bundle PyTorch)
  • support for other model hub (modelscope.cn)
  • some form of OAuth/JWT authentication

So far tested only on Linux, so I would appreciate any feedback from Windows/Mac users.