Author a data template once, generate endless realistic, consistent test data forever — no re-prompting.
Project description
Dugalaxy
Describe the data you want in one sentence — get a template that generates endless varied, consistent, validated samples forever. No re-prompting.
A chatbot gives you five samples that drift, repeat, and contradict each other. Dugalaxy gives you a reusable template: a seeded engine invents the ground-truth facts, the model writes only the prose around them, and every sample is checked and written to disk. Flat cost, reproducible, thousands of samples from one command — and you don't even have to write the template by hand.
Status: Early and actively built in the open by a solo developer. v1 focuses on Template mode. Expect rapid iteration. Issues and feedback are very welcome.
Get started in four steps
# 1. Install
pip install dugalaxy
# 2. Run it with no arguments — it guides you from here
dugalaxy
# 3. See it work instantly (zero setup — no model, no key, no config)
dugalaxy gen quickstart
# 4. Make your own from one sentence
dugalaxy new "short angry support emails about late refunds, each with an order id and a refund amount"
That's it. Step 2 walks you through the rest interactively; the steps below are the same path spelled out, in case you'd rather drive it yourself.
dugalaxy— the guided first run. It gives you an instant win, then offers to build your own template. (In a script or pipe it just prints help and exits — never hangs.)dugalaxy gen quickstart— fully deterministic synthetic profiles. The seeded engine writes every field, so it needs no model at all. Real data the second you install.dugalaxy new "<description>"— the AI builder drafts a template from your sentence, validates it against the real loader (retrying if needed), and saves./<slug>.yaml. With no model available it starts you from the closest example instead — you're never blocked. The result is a starting point to skim, not a verified dataset.dugalaxy gen <your-template>— generate from it (1 sample first;--n Nfor more).dugalaxy doctor— plain-words check of your setup, with the one thing to fix next.
Before each run Dugalaxy prints what it will do — sample count, seed, target model, output
location, an estimated cost, and a duplicate-risk warning — and gates paid runs behind a
confirmation. After it, it reports produced/dropped/retries and a diversity metric so
variety is provable. Output is written incrementally as JSONL (the lingua franca of LLM
eval/fine-tune datasets) and as a YAML dataset envelope; pick with --format.
New here? Follow the getting-started walkthrough.
What makes it more than an LLM wrapper
Three ideas, together, make this a tool rather than a chat session:
- Template as a durable asset. Author the intent once; regenerate forever with one command. No re-explaining yourself to a chatbot every time.
- Deterministic grounding. The model never invents the structured facts. A seeded engine generates the ground-truth facts of each scenario; those facts are templated into structured payloads (guaranteed valid by serialization) and handed to the model as ground truth. The model only ever writes free-form prose, conditioned on facts it is given.
- Disk-backed, no context bloat. Every sample is written to disk as it is produced. The model's context never accumulates prior output — so generation scales indefinitely at flat cost, with no degradation.
Want to write or tune a template by hand? The template spec is the full reference — but you never need to read it to get started.
Bring your own model
Dugalaxy talks to OpenAI-compatible APIs (OpenAI, DeepSeek, Groq, Together, …), Anthropic, and local models via Ollama (fully offline, zero API cost — the default). Using a hosted model is two small steps:
1. Put a dugalaxy.config.yaml in the directory you run from (it's read from your current
working directory):
provider: openai_compatible
base_url: https://api.openai.com/v1
model: gpt-4o-mini
api_key_env: OPENAI_API_KEY # the NAME of the env var — never the key itself
cost_cap_usd: 1.00
2. Set the environment variable that holds your key (it lives only in that terminal window — API keys are never read from a file on disk):
$env:OPENAI_API_KEY = "sk-your-key-here" # Windows PowerShell
export OPENAI_API_KEY="sk-your-key-here" # macOS / Linux
Then run dugalaxy doctor to confirm the config, provider, and key are all green. Prefer no
file? Pass --provider/--model/--api-key-env as flags instead. Precedence is
CLI flags > config file > template defaults.
Templates that contain no model-written prose run fully deterministically — no model, no API key required.
A note on the data
Everything Dugalaxy produces is synthetic test data — names, emails, IDs, and timestamps are generated by a seeded engine, not drawn from real people or systems. It is meant for evaluating, fine-tuning, and testing software. The structured facts are guaranteed valid by serialization; model-written prose is checked structurally only (length, fact-presence), never for semantic correctness.
Documentation
License
AGPL-3.0-only. Free for any internal use. If you offer Dugalaxy as a hosted or commercial service, the AGPL requires you to open-source your whole stack. For commercial licensing that doesn't carry that obligation, open an issue to start a conversation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dugalaxy-0.1.0.tar.gz.
File metadata
- Download URL: dugalaxy-0.1.0.tar.gz
- Upload date:
- Size: 977.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb69526cec713c345bef8deefabaf5296eb9aa962fe3a73c77355a326e1dc796
|
|
| MD5 |
cd16c4bfb68cf401e0a6c902d7450bd6
|
|
| BLAKE2b-256 |
8340baad2cc7eb2d5cbfd8ada23d00cea7d9b6f65a60bb160626f74f0d74d10f
|
File details
Details for the file dugalaxy-0.1.0-py3-none-any.whl.
File metadata
- Download URL: dugalaxy-0.1.0-py3-none-any.whl
- Upload date:
- Size: 81.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1adc8838d6e6bbf33bd33e7d8428f18b5d175242f59e19d4994bb99358f45f3
|
|
| MD5 |
b4b47d2bbb8bea92c66bb5ab214aa97d
|
|
| BLAKE2b-256 |
30780ba6cf9190a7b1ab7e7017bddcd31f6495bb1dd94665500d8fbde03230ee
|