NitrAI ⚡

Welcome to NitrAI. We are an AI research and development organization dedicated to bridging the gap between frontier closed-source intelligence and consumer-grade hardware.

Our core focus is efficient reasoning distillation — capturing complex coding-agent trajectories, multi-step mathematical logic, and system-level reasoning from massive frontier LLMs and packing them into highly optimized, lightweight models you can actually run locally.


🎯 Our Mission


🚀 Featured Models

🧠 OpenGCM-v2 (9B)

OpenGCM-v2 is our flagship reasoning-focused model. It is engineered to deliver enterprise-grade logical reasoning and coding proficiency within a lightweight 9-billion parameter budget.

🌟 Polaris-V1 (4B, upcoming)

Polaris-V1 is designed to redefine the boundaries of lightweight local intelligence. Engineered to deliver near-frontier capabilities within a highly efficient 4-billion parameter envelope, it bridges the gap between extreme context length and uncompromising reasoning quality.


🛠️ Getting Started

Quick Inference with Hugging Face & Transformers

You can easily load our models using the transformers library:

from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "NitrAI/OpenGCM-v2"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
    model_name, 
    device_map="auto", 
    torch_dtype="auto"
)

prompt = "Analyze the following system trace and identify the deadlock:"
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
outputs = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))