Aurora One is a small from-scratch decoder-only language model. This repository contains GGUF exports for local inference.
However, this is not the full Aurora model. Aurora One's tokens is also corrected through our systems to provide accurate, up-to-facts info.
JESUS is king.
This is a custom Aurora architecture exported through a Qwen3-compatible GGUF path. It is not a Qwen model.
Files
aurora-one-generalization-repair-v4-f16.gguf - recommended GGUF for llama.cpp / LM Studio server API.
aurora-one-generalization-repair-v4-lmstudio-f16.gguf - alternate export with conditional ChatML template metadata.
SYSTEM_PROMPT.txt - recommended system prompt.
aurora_lmstudio_adapter.py - optional OpenAI-compatible middleware for deterministic arithmetic/sorting/live-data fallback/search.
Recommended Prompt Format
Use ChatML:
text
1<|im_start|>system
2You are Aurora One. Follow the user's instruction exactly. Be concise by default. Do not invent live facts or pretend to use tools. Only use a database, search, internet, or external tool if the system prompt explicitly says it is available. If the answer is not in your training data and no such access is explicitly available, say exactly: According to my training data, I cannot answer this question reliably. For code-only requests, output only working code.<|im_end|>
3<|im_start|>user
4Hello!<|im_end|>
5<|im_start|>assistant
Recommended stop strings:
text
1<|im_end|>
2<eos>
3<|end|>
LM Studio
The LM Studio lms chat wrapper can route custom qwen3-shaped GGUFs poorly. Use the LM Studio local server API instead.
bash
1lms server start
2lms load aurora-one-generalization-repair-v4-f16.gguf --identifier aurora-one --gpu max -c 2048 -y
Call:
http://127.0.0.1:1234/v1/chat/completions
Use model: "aurora-one" and include the system prompt from SYSTEM_PROMPT.txt.
Optional Adapter
For a more useful server deployment, run the included adapter in front of LM Studio:
handles a few common deterministic translation/instruction cases,
returns the safe fallback for current/live facts unless search is explicitly enabled in the system prompt,
can use CoinGecko for BTC, wttr.in for weather, and modal.com/pricing for Modal GPU pricing.
For search/live access, include a system prompt sentence such as:
Search/internet/database access is available for current facts.
Known Limitations
Aurora One is a small experimental model. It is not a reliable general assistant by itself. It can fail on arithmetic, exact instruction following, factual recall, translation, and reasoning. For production use, keep deterministic tools/middleware around it.