vakforge
The decision layer for open voice AI.
vakforge helps you build a voice assistant from the data your company already has, and run it on your own servers. Before you spend anything on GPUs, it tells you what actually needs training. Usually that is less than you think.
- Bring any data: documents, FAQs, database tables, chat logs, CRM records, recorded calls.
- Open models only: nothing calls a hosted API. You own the result.
- Any language: through locale packs. Launching with English (US, UK, India) and Hinglish.
Status: pre-alpha.
init,validate,inspectand the locale packs work today. Seedocs/ROADMAP.md.
Why vakforge exists
Open voice models are good enough today. Moshi, PersonaPlex, LFM2.5-Audio and Qwen-Omni can listen and talk, and strong open speech-to-text and text-to-speech models exist too. Yet most companies still pay per minute for a closed voice API.
That is not because the open models are worse. It is because nobody helps them answer four questions:
- Should we fine-tune, or is retrieval enough?
- Which model fits our language, our speed needs and our hardware?
- What data do we need, and are we allowed to train on our calls?
- How do we prove the result is better before a customer hears it?
vakforge answers them from your own data.
The hard part was never the models. It was the decision.
"Open models strengthen safety and cybersecurity, accelerate innovation and diffusion, and enable sovereignty." Jensen Huang, NVIDIA, on X, 24 July 2026
vakforge is about that last word: owning your voice AI instead of renting it.
How it works
initcreates a project folder for your language and market.inspectreads your data folder and reports what is in it: languages, personal data, tables that could become tools, audio quality.recommenddecides what needs changing. Often the answer is retrieval and tools, with no training at all.prepare,train,eval,serveare built for your project by a coding agent using the vakforge skill. It trains only whatrecommendasked for, and ships only ifevalshows the result beats the base model.
Today the CLI covers init, validate, inspect and the locale packs. recommend is next.
How the decision is made
| If the assistant should... | The fix is | Training? |
|---|---|---|
| know your prices, policies and FAQs | retrieval: look facts up at answer time | none |
| look things up, book, open tickets | tools over your tables | only if it keeps missing |
| follow your call flow and tone | behaviour fine-tune of the language model | small |
| understand your callers' accents, names, amounts | speech-to-text fine-tune | small |
| sound like your brand | voice cloning, with written consent | voice only |
| handle interruptions naturally | a full-duplex model trained on real calls | large |
| speak another language | a locale pack plus a model that speaks it | depends |
Every route ends the same way: test it against your own held-out data, and ship only if it beats the base model.
Each goal has its own fix, and most of them are not a full fine-tune. The detailed rules, with how much data each route needs and what hardware it takes, are in docs/DECISION_GUIDE.md.
The problem, for engineers
Open speech-to-speech models exist. Fine-tuning scripts exist for some of them. Evaluation tools and serving frameworks exist. What is missing is one path from "here is what my company knows" to "here is a voice assistant that handles my workflow, I can prove it is better than the base model, and my existing voice client can talk to it without a rewrite." Every team rebuilds that path, and most of them fine-tune when they should have used retrieval.
What's in the repo
- A small library and command-line tool (
pip install vakforge). No machine-learning dependencies, so it runs on any laptop. It holds the dataset format, the data checks, the data inspector, the decision rules and the locale packs. - An agent skill (
skill/, in progress). Add it to Claude Code or another coding agent. The agent reads your data, follows the decision rules, and writes the training and serving code for your project. It checks every library it uses against the installed source first, so it does not guess at APIs. - Recipes (
docs/RECIPES.md). Written-down, tested paths from an open base model to a running assistant. Only recipes someone has run end to end get listed.
| Command | What it does | Status |
|---|---|---|
vakforge init |
Create a project folder for your language and market | works |
vakforge inspect |
Report what is in your data folder | works |
vakforge validate |
Check a dataset file against the vakforge format | works |
vakforge locales |
List language packs and show their rules | works |
vakforge schema |
Export the dataset format as JSON Schema | works |
vakforge recommend |
Decide what needs changing, often "retrieval, not training" | next |
prepare, synth, train, eval, serve |
Build, test and host the assistant | written per project by the agent skill |
Bring any data
| You have | What vakforge does with it |
|---|---|
| Documents, FAQs, policies | Looks facts up at answer time (retrieval), so prices and policies stay current without retraining. |
| Database tables, CRM, product catalogue | Turns them into tools the assistant can call, like "look up order by order id". |
| Chat logs, transcripts | Teaches the assistant how your team handles a conversation: steps, tone, hand-offs. |
| Recorded calls | Everything above, plus your callers' accents and the natural timing of real calls. Personal data is removed first. |
| Nothing yet | Generates example conversations in your language, so you can ship a first version and collect real data. |
Locale packs
The core works in any language. Everything that changes by language or country lives in a locale pack: how money, dates and phone numbers are written, which ID numbers count as personal data, the local privacy and call-recording rules, and which open models support the language. Adding a new market means adding a pack, not changing the core. See docs/LOCALE_PACKS.md, or run vakforge locales.
| Pack | Covers | Can the assistant speak it? | Status |
|---|---|---|---|
en-US, en-GB, en-IN |
US, UK and Indian English | yes, with every recipe | works |
hi-Latn-IN |
Hinglish: Hindi and English mixed, in Roman or Devanagari script | understands it; speaks English, or Hindi through the cascade recipe | works |
zh-CN |
Mandarin | via qwen-omni |
planned |
es, de, fr, pt-BR, ja, ar |
via qwen-omni or cascade |
planned, contributions welcome |
Recipes
| Recipe | Base model | Good for | Duplex | Hardware (train) | Status |
|---|---|---|---|---|---|
lfm25-audio |
LiquidAI LFM2.5-Audio-1.5B | workflow, tool use, style, CPU deploy | turn-based | 1x 24 GB GPU | planned (first) |
moshi-lora |
Kyutai Moshi / NVIDIA PersonaPlex | interruptions, natural timing, persona | full-duplex | 1x 40-80 GB GPU | planned |
qwen-omni |
Qwen3-Omni | multilingual incl. Mandarin, function calling | near-duplex | 80 GB / multi-GPU | planned |
cascade |
STT + LLM LoRA + TTS chosen by locale | any language with a good STT+TTS pair | turn-based | 1x 24 GB GPU | planned |
"Duplex" means the assistant can listen while it talks, so callers can interrupt it naturally. Details in docs/RECIPES.md.
Connecting your app
Your assistant runs an open model on your own servers. Nothing calls OpenAI or any other hosted API.
To make switching easy, the server accepts the same WebSocket messages as OpenAI's Realtime API. If your app already talks to GPT Realtime, you change one URL. Tools like Pipecat, LiveKit and Twilio keep working as they are. More connection types can be added without touching the model:
| Protocol | For | Status |
|---|---|---|
| OpenAI Realtime WebSocket (documented subset) | teams migrating off GPT Realtime; Pipecat, LiveKit, Twilio clients | first |
| WebRTC via LiveKit or Pipecat transports | browser and mobile apps, lowest latency | next |
| SIP / telephony | call centres and phone lines | next |
| Plain HTTP, one turn per request | batch jobs, simple integrations | planned |
| Gemini Live API format | teams on Google's stack | on request |
Why English and Hinglish first
English has the strongest open voice models, so every recipe works for US, UK and Indian English. Hinglish is the hard test: people switch between Hindi and English mid-sentence, write Hindi in Roman or Devanagari script, and say amounts like "2 lakh rupees" on noisy phone lines. If vakforge handles that, adding another language is mostly filling in a new pack.
Quick start
pip install vakforge
vakforge init my-assistant --locale hi-Latn-IN
# put your documents, tables, chat exports and call recordings in my-assistant/data/raw/
vakforge inspect my-assistant/data/raw
inspect prints a summary and writes inspect.json. vakforge recommend, which reads it, is next.
Documentation
docs/DECISION_GUIDE.md: what needs customizing, and when not to fine-tunedocs/LOCALE_PACKS.md: what a locale pack contains, and how to add onedocs/DATA_FORMAT.md: the dataset formatdocs/ARCHITECTURE.md: how the code fits together, with diagramsdocs/RECIPES.md: per-model training recipesdocs/EVALUATION.md: metrics, report format, per-locale benchmarksdocs/DATA_ETHICS.md: consent, PII, licences, privacy law by regiondocs/ROADMAP.md: statusCONTRIBUTING.md
Related projects (we build on these, not against them)
Unsloth, LLaMA-Factory, ms-swift, kyutai-labs/moshi-finetune, NVIDIA PersonaPlex, liquid-audio, Qwen-Omni, Pipecat, LiveKit Agents, vLLM-omni, UltraEval-Audio, AI4Bharat, Common Voice
Licence
Apache-2.0 for this code. Each open model keeps its own licence; see docs/RECIPES.md. Datasets you create with vakforge are yours. The consent records vakforge asks for are there to keep it that way.
Release files for vakforge 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| vakforge-0.1.0.tar.gz | 127.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| vakforge-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 168.3 kB
Release files / vakforge-0.1.0.tar.gz
| Download URL | vakforge-0.1.0.tar.gz |
|---|---|
| Size | 127.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cee6cf7322164bccb081d663dfba1227da36a4b3dbddeca314e5dba35dbe4f8f
|
|
BLAKE2b-256 checksum How to use checksums |
3e0997b3582ef71f96bcc777e0334d78438622ff939616cc2e8933f3bbdba41c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 19, 2026.
Transparency logRelease files / vakforge-0.1.0-py3-none-any.whl
| Download URL | vakforge-0.1.0-py3-none-any.whl |
|---|---|
| Size | 41.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c5f7ebf93e04f6943013289fd411d361fcebf7946937e1432a6087c304720112
|
|
BLAKE2b-256 checksum How to use checksums |
1cb9cde5273f3a0f6763ccf0d797f2edfc3c4dacbb0ca34aa44fc918fcbe20c8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 19, 2026.
Transparency log