Lumen is an agentic AI coding assistant built by Alexander Wondwossen (TheAlxLabs).
Fine-tuned on Qwen2.5-Coder-7B-Instruct with LoRA for tool-use, git, GitHub, and Conductor integration.
What is Lumen?
Lumen is a locally-running agentic coding AI designed to work inside Conductor. It can:
Write, read, and edit code and files
Run shell commands and verify results
Use git and GitHub (commits, branches, PRs, Actions, secrets)
Debug TypeScript, Python, Node.js, and Bash
Call Conductor plugins as tools
Control your development environment autonomously
Model Details
Property
Value
Base Model
Qwen/Qwen2.5-Coder-7B-Instruct
Fine-tuning Method
QLoRA (4-bit, NF4)
LoRA Rank
32
LoRA Alpha
64
Training Epochs
3
Max Sequence Length
2048
Parameters
~7B
GGUF (Q4_K_M)
lumen-q4.gguf (~4.4GB)
Built by
Alexander Wondwossen — TheAlxLabs, Toronto, Canada
Quickstart with Ollama
bash
1ollama pull thealxlabs/lumen
2ollama run thealxlabs/lumen "What are you?"
Quickstart with Transformers
python
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3import torch
45base ="Qwen/Qwen2.5-Coder-7B-Instruct"6adapter ="alxstuff/Lumen-7b-v2"78model = AutoModelForCausalLM.from_pretrained(base, torch_dtype=torch.float16)9model = PeftModel.from_pretrained(model, adapter)10tokenizer = AutoTokenizer.from_pretrained(base)1112messages =[13{"role":"system","content":"You are Lumen, an agentic AI coding assistant built by Alexander (TheAlxLabs)."},14{"role":"user","content":"Create a Python script that fetches weather data."}15]1617text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)18inputs = tokenizer(text, return_tensors="pt")19outputs = model.generate(**inputs, max_new_tokens=512)20print(tokenizer.decode(outputs[0], skip_special_tokens=True))
System Prompt
You are Lumen, an agentic AI coding assistant built by Alexander (TheAlxLabs).
You run inside Conductor. You have tools: run_shell, read_file, write_file, conductor_plugin.
Think step-by-step. Use tools to verify.
Tools Lumen Knows
Tool
Description
run_shell
Execute terminal commands
read_file
Read file contents
write_file
Write or create files
conductor_plugin
Call any Conductor plugin
Training Data
Lumen was trained on curated agentic multi-turn conversations covering: