Aurora-Code-1 is a 35B Mixture-of-Experts coding model (3B parameters activated per token) built by Perciqa, a Canadian AI company. Fine-tuned from Qwen3.6-35B-A3B on 2,700 high-quality agentic coding instruction pairs, Aurora-Code-1 is optimised for code generation, debugging, code review, and multi-step agentic coding workflows.
Aurora-Code-1 is tuned specifically for developers who need a model they can deploy, audit, and fully control — on their own infrastructure.
Code generation — write functions, classes, and complete programs across 40+ languages
Debugging — identify root causes and produce clear, actionable fixes
Code review — flag security issues, suggest refactors, explain tradeoffs
Agentic tasks — multi-step tool use, planning, and repository-level reasoning
No black boxes. No data leaving your infrastructure. Your model, your terms.
Quickstart
Install
pip install "transformers>=4.51.0" accelerate
Hardware: ~60–65 GB VRAM. A single 80 GB A100/H100 or two 48 GB GPUs work well. device_map="auto" supports CPU offload for smaller setups.
Transformers
python
1from transformers import AutoModelForCausalLM, AutoTokenizer
23model_name ="Perciqa/Aurora-Code-1"45tokenizer = AutoTokenizer.from_pretrained(model_name)6model = AutoModelForCausalLM.from_pretrained(7 model_name,8 torch_dtype="auto",9 device_map="auto",10)1112system_prompt =(13"You are Aurora, an AI code assistant built by Perciqa. "14"You help developers write, review, and understand code. "15"You provide clear, correct, and complete solutions. "16"When you're unsure, you say so."17)1819messages =[20{"role":"system","content": system_prompt},21{"role":"user","content":"Write a Python function to merge two sorted lists."},22]2324text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)25inputs = tokenizer([text], return_tensors="pt").to(model.device)2627outputs = model.generate(28**inputs,29 max_new_tokens=2048,30 temperature=0.7,31 do_sample=True,32)33response = tokenizer.decode(outputs[0][len(inputs.input_ids[0]):], skip_special_tokens=True)34print(response)
1from openai import OpenAI
23client = OpenAI(base_url="http://localhost:8000/v1", api_key="token-abc123")45response = client.chat.completions.create(6 model="Perciqa/Aurora-Code-1",7 messages=[8{"role":"system","content":"You are Aurora, an AI code assistant built by Perciqa."},9{"role":"user","content":"Refactor this function to be more Pythonic."},10],11 max_tokens=2048,12)13print(response.choices[0].message.content)
1import argus
2from openai import OpenAI
34argus.init(server_url="http://localhost:8000", agent_name="aurora-coder")5client = OpenAI(base_url="http://localhost:8000/v1", api_key="token-abc123")67@argus.trace(kind="agent")8defaurora_code(query:str)->str:9 response = client.chat.completions.create(10 model="Perciqa/Aurora-Code-1",11 messages=[12{"role":"system","content":"You are Aurora, an AI code assistant built by Perciqa."},13{"role":"user","content": query},14],15)16return response.choices[0].message.content
1718result = aurora_code("Write a TypeScript function that validates an email address.")19print(result)
Argus captures latency, token usage, inputs/outputs, and agent spans — visible in the Argus dashboard with no extra instrumentation.
Performance
Benchmarks in progress. Independent evaluations on LiveCodeBench, SWE-bench Verified, HumanEval+, and MBPP+ will be published here before the stable release.
Model Details
Field
Value
Architecture
Mixture-of-Experts (MoE) Transformer
Total Parameters
35B
Activated Parameters
3B per token
Transformer Layers
48
Attention Heads
32 (Q) / 4 (KV), Grouped Query Attention
Total Experts
128
Activated Experts
8 per token
Fine-Tuning
LoRA SFT — 2,700 agentic coding pairs
Context Length
131,072 tokens
License
Apache 2.0
Training
Aurora-Code-1 v1 is trained with LoRA supervised fine-tuning on a curated set of 2,700 agentic coding instruction pairs covering:
Code generation (Python, TypeScript, Go, Rust, and more)
Debugging and root cause analysis
Code review and refactoring
Multi-step agentic reasoning and tool use
Future versions will expand the dataset and move to full fine-tuning.
Roadmap
Version
Description
Status
v1
LoRA SFT on 2,700 agentic coding pairs. Perciqa system prompt and Argus integration.
Released
v2
Expanded SFT on 10K–20K pairs. Independent benchmark evaluation.
Q3 2026
v3
Full fine-tune with extended dataset across generation, debugging, review, and test writing.
Q4 2026
System Prompt
You are Aurora, an AI code assistant built by Perciqa. You help developers write, review, and understand code. You provide clear, correct, and complete solutions. When you're unsure, you say so.
About Perciqa
Perciqa is a Canadian AI company building enterprise models and tools that organisations can deploy, audit, and fully control — on their own infrastructure, on their own terms. Founded in 2023 and based in Canada 🇨🇦.