Marketplace
<div align="center"> <h3>Premium sponsors</h3> <p> <a href="https://id8media.com"><strong>ID8 Media</strong></a> · <a href="https://one-studio.co"><strong>One Studio</strong></a> </p> <p><sub>Support togo — <a href="https://github.com/sponsors/fadymondy">become a sponsor</a>.</sub></p> </div>
Speech-to-Text
OtherSTT — Whisper + Deepgram drivers.
togo-framework
bash
togo install togo-framework/ai-sttInstall
bash
togo install togo-framework/ai-sttai-stt — Speech-to-Text for togo
Adds Speech-to-Text to a togo app on the ai plugin family. Drivers register via
init(); pick one with STT_DRIVER.
bash
togo install togo-framework/ai-sttDrivers
STT_DRIVER | Provider | Env |
|---|---|---|
| openai | OpenAI Whisper | OPENAI_API_KEY (OPENAI_BASE_URL optional) |
| deepgram | Deepgram | DEEPGRAM_API_KEY |
Rows per page
1–2 of 2Page 1 of 1
Use
Mount the REST handler under /api/ai/stt and POST the raw audio (body) →
{"text": "..."}. Or from Go:
go
svc, _ := stt.FromKernel(k)
res, _ := svc.Transcribe(ctx, stt.Request{Audio: bytes, Model: "whisper-1"})
MIT
<div align="center"> <h3>Premium sponsors</h3> <p> <a href="https://id8media.com"><strong>ID8 Media</strong></a> · <a href="https://one-studio.co"><strong>One Studio</strong></a> </p> <p><sub>Support togo — <a href="https://github.com/sponsors/fadymondy">become a sponsor</a>.</sub></p> </div>