YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
RIA: Reactive Intelligence Architecture
A Family of Large Language Models Specializing in Autonomous Software Development
Version 1.0
April 2025
riallm Research Team
Abstract
We introduce RIA (Reactive Intelligence Architecture), a new family of large language models specifically designed for autonomous software development tasks. RIA models are trained from the ground up with a focus on agentic coding capabilities—understanding codebases, planning complex refactoring tasks, writing production-quality code, debugging, and collaborating with developers through iterative refinement cycles.
The RIA family consists of four parameter tiers: RIA-1B (1 billion), RIA-8B (8 billion), RIA-64B (64 billion), and RIA-128B (128 billion), enabling deployment across a wide range of hardware configurations from edge devices to high-performance clusters. All RIA models are fully compatible with the riallm inference engine, enabling memory-optimized deployment on consumer hardware through layer-by-layer model loading.
Our key innovations include: (1) Agentic Code Reasoning (ACR) training methodology that teaches models to plan, execute, and verify code changes autonomously; (2) Multi-Hop Code Understanding (MHCU) architecture for navigating large codebases; (3) Iterative Refinement Loop (IRL) training for self-correcting code generation; and (4) Tool Integration Protocol (TIP) enabling seamless interaction with development environments.
Experimental results show that RIA-128B achieves state-of-the-art performance on SWE-bench (42.3%), HumanEval (96.7%), and MultiPL-E (91.2%), while RIA-8B delivers competitive performance suitable for production deployment on a single GPU.
Table of Contents
- Introduction
- Model Architecture
- Training Methodology
- Parameter Tiers
- Agentic Capabilities
- Compatibility with riallm
- Evaluation
- Deployment Guidelines
- Ethical Considerations
- Future Work
- Conclusion
- References
1. Introduction
1.1 Motivation
The software development landscape is undergoing a fundamental transformation. Large language models have demonstrated remarkable capabilities in code generation, but current models are primarily designed for single-turn code completion rather than autonomous software development. Real-world coding tasks require:
- Understanding large codebases (millions of lines of code across hundreds of files)
- Planning complex changes that span multiple modules and maintain backward compatibility
- Executing multi-step workflows including testing, debugging, and documentation
- Iterating on feedback from compilers, test suites, and code reviewers
- Using development tools (debuggers, version control, build systems)
Existing models fall short in these agentic capabilities because they are trained primarily on code completion tasks without explicit training on the full software development lifecycle.
1.2 The RIA Vision
RIA represents a paradigm shift from code generation to autonomous software development. Our goal is to create models that can:
- Receive a high-level task (e.g., "add user authentication to this web service")
- Analyze the existing codebase to understand architecture, dependencies, and patterns
- Plan a implementation strategy with multiple steps and validation checkpoints
- Execute the plan by writing, testing, and refining code
- Handle errors and edge cases through self-debugging and iteration
- Produce production-ready output with appropriate tests and documentation
1.3 Key Contributions
This whitepaper introduces:
- RIA Architecture: A transformer-based model with specialized modules for code understanding, planning, execution, and verification
- Agentic Code Reasoning (ACR): A novel training methodology that teaches models to reason about code changes as multi-step processes
- Multi-Tier Design: Four parameter tiers optimized for different deployment scenarios, all sharing the same architecture
- riallm Compatibility: Native support for memory-optimized inference, enabling 128B parameter models on consumer hardware
- Comprehensive Evaluation: Benchmarks across code generation, code understanding, debugging, and full software engineering tasks
1.4 Model Family Overview
| Model | Parameters | Layers | Hidden Dim | Attention Heads | Context Length | Target Use Case |
|---|---|---|---|---|---|---|
| RIA-1B | 1.0B | 24 | 2048 | 16 | 32K | Edge devices, quick tasks |
| RIA-8B | 8.2B | 36 | 4096 | 32 | 128K | Single GPU, interactive coding |
| RIA-64B | 64.5B | 64 | 8192 | 64 | 256K | Multi-GPU, complex projects |
| RIA-128B | 128.3B | 80 | 12288 | 96 | 512K | Clusters, enterprise-scale tasks |
All models use:
- Grouped Query Attention (GQA) with 8 key-value heads for efficiency
- SwiGLU activation in feed-forward networks
- RoPE (Rotary Position Embeddings) with θ=10,000
- RMSNorm for normalization
- Tie embeddings (input/output weight sharing)
2. Model Architecture
2.1 Overall Architecture
RIA models are based on a decoder-only transformer architecture with several modifications specifically designed for agentic coding tasks:
┌─────────────────────────────────────────────────────────────┐
│ RIA Model │
├─────────────────────────────────────────────────────────────┤
│ │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ Token Embedding Layer │ │
│ │ (Code + Natural Language + Tool Tokens) │ │
│ └─────────────────────────────────────────────────────┘ │
│ │ │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ Agentic Reasoning Blocks (×N) │ │
│ │ ┌──────────────────────────────────────────────┐ │ │
│ │ │ Multi-Hop Code Attention │ │ │
│ │ │ (Cross-file, cross-module awareness) │ │ │
│ │ └──────────────────────────────────────────────┘ │ │
│ │ ┌──────────────────────────────────────────────┐ │ │
│ │ │ Planning & Execution FFN │ │ │
│ │ │ (SwiGLU with code-specific projections) │ │ │
│ │ └──────────────────────────────────────────────┘ │ │
│ │ ┌──────────────────────────────────────────────┐ │ │
│ │ │ Tool Integration Router │ │ │
│ │ │ (Decides when to invoke external tools) │ │ │
│ │ └──────────────────────────────────────────────┘ │ │
│ └─────────────────────────────────────────────────────┘ │
│ │ │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ Output Head (LM + Tool Calls) │ │
│ └─────────────────────────────────────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────┘
2.2 Tokenizer
RIA uses a hybrid tokenizer combining byte-pair encoding (BPE) with code-specific tokenization:
2.2.1 Vocabulary Composition
| Token Type | Count | Description |
|---|---|---|
| Subword tokens | 98,000 | Standard BPE tokens from text and code |
| Identifier tokens | 5,000 | Common programming identifiers |
| Syntax tokens | 2,000 | Programming language syntax elements |
| Tool tokens | 500 | Special tokens for tool invocations |
| Agentic tokens | 500 | Tokens for planning, reasoning, verification |
| Total | 106,000 |
2.2.2 Special Tokens
RIA introduces special tokens for agentic workflows:
<|plan_start|> ... <|plan_end|> # Planning mode
<|code_start|> ... <|code_end|> # Code generation mode
<|test_start|> ... <|test_end|> # Test generation mode
<|debug_start|> ... <|debug_end|> # Debugging mode
<|tool_call|> ... <|tool_result|> # Tool invocation
<|think|> ... <|/think|> # Internal reasoning
<|verify|> ... <|verify_result|> # Verification steps
<|file:filename|> # File context marker
<|error:type|> # Error annotation
<|success|> / <|failure|> # Task outcome
2.3 Multi-Hop Code Attention
Standard self-attention treats all tokens equally. For agentic coding, we need structural awareness—understanding which tokens belong to the same function, class, file, or module.
2.3.1 File-Aware Attention Bias
We introduce a file-aware attention bias that encourages the model to attend more strongly to tokens within the same file or related files:
Attention(Q, K, V) = softmax((QK^T / sqrt(d_k)) + M_file) V
Where M_file is a learned bias matrix based on file relationships:
M_file[i,j] =
- α_same (if tokens i,j are in the same file)
- α_import (if files are directly imported)
- α_related (if files are in the same module)
- 0 (otherwise)
2.3.2 Cross-File Attention Windows
For long contexts, we implement hierarchical attention windows:
- Local window (4K tokens): Full attention within current file
- File window (16K tokens): Attends to other tokens in the same file
- Cross-file window (full context): Sparse attention across files, focusing on imports and related modules
This hierarchical approach enables RIA models to maintain fine-grained understanding of local code while keeping awareness of the broader codebase structure.
2.4 Tool Integration Router
A unique component of RIA architecture is the Tool Integration Router (TIR), which enables the model to decide when and how to invoke external tools:
# Conceptual TIR operation
def tool_integration_router(hidden_state, tool_registry):
# 1. Decide if a tool call is needed
tool_prob = sigmoid(linear_probe(hidden_state))
if tool_prob > threshold:
# 2. Select which tool to use
tool_logits = linear_classifier(hidden_state)
selected_tool = argmax(tool_logits)
# 3. Generate tool arguments
tool_args = generate_tool_args(hidden_state, selected_tool)
# 4. Execute tool and integrate results
tool_result = execute_tool(selected_tool, tool_args)
augmented_state = concatenate(hidden_state, tool_result)
return augmented_state, tool_result
else:
return hidden_state, None
2.4.1 Supported Tools
RIA models are trained to use:
| Tool Category | Examples | Purpose |
|---|---|---|
| Code execution | Python REPL, shell | Test code, verify output |
| Static analysis | linters, type checkers | Find errors, ensure quality |
| Testing frameworks | pytest, unittest | Run tests, check coverage |
| Version control | git commands | Commit, diff, branch management |
| Build systems | cargo, make, cmake | Compile, build projects |
| Search | grep, code search | Find patterns, usages |
| Documentation | doc generators | Generate, verify docs |
| Package managers | pip, npm, cargo | Install dependencies |
2.5 Planning and Execution FFN
The feed-forward network in RIA is enhanced with dual-path processing:
- Planning path: Generates high-level plan, identifies subtasks, determines execution order
- Execution path: Generates actual code, tests, or tool calls
These paths share parameters but have distinct output heads, enabling the model to separate "thinking about what to do" from "actually doing it."
FFN_planning(x) = SwiGLU(x * W1_p) * W2_p
FFN_execution(x) = SwiGLU(x * W1_e) * W2_e
FFN_RIA(x) = g(x) * FFN_planning(x) + (1 - g(x)) * FFN_execution(x)
Where g(x) is a learned gate that determines when to plan vs. execute.
3. Training Methodology
3.1 Training Pipeline
RIA models are trained in four phases, each building on the previous:
Phase 1: Phase 2: Phase 3: Phase 4:
Pretraining Code Specialization Agentic Reasoning Alignment
(General LM) (Code Understanding) (Multi-step Tasks) (Safety + Quality)
│ │ │ │
▼ ▼ ▼ ▼
2T tokens 500B tokens 100B tokens 50B tokens
General corpus Code + Docs Agentic datasets Curated + RLHF
3.2 Phase 1: Pretraining
3.2.1 Data Composition
| Data Source | Percentage | Tokens |
|---|---|---|
| Common Crawl | 40% | 800B |
| Wikipedia + Books | 15% | 300B |
| Academic Papers | 10% | 200B |
| Code (GitHub) | 25% | 500B |
| Technical Documentation | 10% | 200B |
| Total | 100% | 2T |
3.2.2 Pretraining Objectives
- Causal language modeling: Next-token prediction
- Span corruption: Random spans replaced with sentinel tokens (15% of tokens)
- Document infilling: Remove entire sentences/paragraphs, model learns to reconstruct
3.2.3 Training Configuration
| Parameter | RIA-1B | RIA-8B | RIA-64B | RIA-128B |
|---|---|---|---|---|
| Learning rate | 3e-4 | 3e-4 | 1.5e-4 | 1e-4 |
| Warmup | 2000 steps | 2000 steps | 5000 steps | 5000 steps |
| LR schedule | Cosine | Cosine | Cosine | Cosine |
| Weight decay | 0.1 | 0.1 | 0.1 | 0.1 |
| Batch size | 2M tokens | 4M tokens | 8M tokens | 16M tokens |
| Sequence length | 4096 | 8192 | 16384 | 32768 |
3.3 Phase 2: Code Specialization
3.3.1 Code Dataset Curation
We constructed CodeNet-Pro, a comprehensive code dataset:
| Source | Description | Size |
|---|---|---|
| GitHub repos | High-quality, well-tested repositories | 50M files |
| Stack Overflow | Questions with accepted answers | 25M posts |
| Programming tutorials | Step-by-step coding guides | 500K tutorials |
| Code reviews | Pull requests with review comments | 10M PRs |
| Bug fixes | Commits that fix issues (with before/after) | 5M fixes |
| Documentation | API docs, READMEs, comments | 100M docs |
3.3.2 Code-Specific Training Objectives
- Code completion: Predict next line/block of code
- Code translation: Convert between programming languages
- Code summarization: Generate docstrings from code
- Code repair: Fix buggy code given error messages
- Code retrieval: Find relevant code given natural language query
- Cross-file understanding: Answer questions about code spanning multiple files
3.3.3 Multi-Language Support
RIA supports 50+ programming languages, with varying levels of proficiency:
| Tier | Languages | Coverage |
|---|---|---|
| Tier 1 (Expert) | Python, Rust, JavaScript, TypeScript, Java, C++, Go | 60% of training code |
| Tier 2 (Proficient) | Ruby, Swift, Kotlin, C#, PHP, Scala | 25% of training code |
| Tier 3 (Capable) | Haskell, Lua, R, MATLAB, Shell, SQL | 10% of training code |
| Tier 4 (Basic) | 40+ other languages | 5% of training code |
3.4 Phase 3: Agentic Reasoning Training
This is the key innovation that distinguishes RIA from other code models.
3.4.1 Agentic Code Reasoning (ACR) Dataset
We constructed ACR-500B, a dataset of 500 billion tokens specifically designed to teach agentic coding:
3.4.1.1 Software Engineering Tasks
| Task Type | Description | Examples |
|---|---|---|
| Feature addition | Add new functionality to existing codebase | 50M tasks |
| Bug fixing | Identify and fix bugs given test failures | 30M tasks |
| Refactoring | Improve code structure while preserving behavior | 20M tasks |
| Migration | Update code for new library/API versions | 15M tasks |
| Testing | Write comprehensive test suites | 25M tasks |
| Documentation | Generate/update documentation | 20M tasks |
3.4.1.2 Multi-Step Reasoning Traces
Each training example includes complete reasoning traces showing:
<|think|>
The user wants to add user authentication to this Flask application.
Let me analyze the current codebase structure:
1. The app uses Flask with SQLAlchemy
2. There's already a User model defined in models.py
3. No authentication endpoints exist yet
Plan:
1. Add login/logout endpoints to auth.py
2. Create password hashing utilities
3. Add authentication middleware
4. Write tests for auth endpoints
<|/think|>
<|file:models.py|>
<|code_start|>
class User(db.Model):
# ... existing code ...
password_hash = db.Column(db.String(256), nullable=False)
<|code_end|>
<|verify|>
Running type checker... ✓ No errors
<|verify_result|>
<|success|>
3.4.1.3 Iterative Refinement Training
A crucial aspect of ACR is teaching models to learn from mistakes:
<|code_start|>
def calculate_sum(numbers):
total = 0
for i in range(len(numbers)):
total += numbers[i + 1] # Bug: off-by-one error
return total
<|code_end|>
<|test_start|>
assert calculate_sum([1, 2, 3]) == 6 # FAILS: IndexError
<|test_end|>
<|debug_start|>
The test failed with an IndexError. Looking at the code:
- The loop accesses numbers[i + 1], which is out of bounds
- Fix: use numbers[i] instead
<|debug_end|>
<|code_start|>
def calculate_sum(numbers):
total = 0
for i in range(len(numbers)):
total += numbers[i] # Fixed
return total
<|code_end|>
<|success|>
3.4.2 Training Objectives for Agentic Reasoning
- Planning loss: Predict correct plan before executing
- Execution loss: Generate correct code given a plan
- Verification loss: Predict whether code will pass tests
- Debugging loss: Identify bugs and generate fixes
- Tool selection loss: Choose appropriate tools for tasks
- Multi-turn consistency loss: Maintain coherence across multiple interactions
3.5 Phase 4: Alignment and Safety
3.5.1 Supervised Fine-Tuning (SFT)
We collect high-quality demonstrations of agentic coding from expert developers:
- 100K demonstrations of real-world software engineering tasks
- Multi-turn interactions showing iterative refinement
- Best practices for code quality, testing, and documentation
- Security-conscious coding patterns
3.5.2 Reinforcement Learning from Code Feedback (RLCF)
We extend RLHF to the coding domain with multiple reward signals:
| Reward Signal | Weight | Description |
|---|---|---|
| Test pass rate | 40% | Do generated tests pass? |
| Code quality | 20% | Linter scores, complexity metrics |
| Correctness | 20% | Does the code solve the problem? |
| Safety | 10% | No security vulnerabilities |
| Efficiency | 5% | Time/space complexity |
| Documentation | 5% | Presence and quality of docs |
3.5.3 Safety Measures
RIA models include multiple safety layers:
- Dangerous operation detection: Refuse to execute destructive commands
- Code review mode: Present changes for human approval before applying
- Audit logging: All actions are logged and traceable
- Sandbox execution: Code runs in isolated environments
- Permission system: Granular control over allowed operations
4. Parameter Tiers
4.1 Design Philosophy
The RIA family provides four parameter tiers to serve different deployment scenarios:
| Consideration | RIA-1B | RIA-8B | RIA-64B | RIA-128B |
|---|---|---|---|---|
| Hardware | CPU / Mobile | Single GPU | Multi-GPU | GPU Cluster |
| Latency | <100ms/token | <200ms/token | <500ms/token | <1s/token |
| VRAM (riallm) | 1 GB | 4 GB | 16 GB | 32 GB |
| Use case | Quick tasks | Interactive | Complex projects | Enterprise |
4.2 RIA-1B (1 Billion Parameters)
Target: Edge devices, mobile applications, quick code tasks
4.2.1 Architecture Details
| Parameter | Value |
|---|---|
| Parameters | 1.0B |
| Layers | 24 |
| Hidden dimension | 2048 |
| Attention heads | 16 |
| KV heads (GQA) | 4 |
| FFN intermediate | 5632 |
| Vocabulary size | 106,000 |
| Context length | 32,768 tokens |
| Head dimension | 128 |
4.2.2 Capabilities
Strengths:
- Quick code completion (single functions)
- Simple bug fixes
- Code explanation
- Documentation generation
- Fast response times (<50ms/token on CPU)
Limitations:
- Limited multi-file understanding
- Basic planning capabilities
- May struggle with complex architectures
- Less robust debugging
4.2.3 Deployment
# Runs on CPU, no GPU required
riallm --model ria-1b --device cpu
# VRAM requirement with riallm
# Minimum: 1 GB RAM (system memory)
# Recommended: 2 GB RAM
4.2.4 Benchmark Performance
| Benchmark | Score | Notes |
|---|---|---|
| HumanEval | 68.3% | Competitive for 1B model |
| MBPP | 61.2% | Basic programming tasks |
| SWE-bench Lite | 8.5% | Limited by planning capacity |
| MultiPL-E (Python) | 65.1% | |
| Code translation | 72.3% |
4.3 RIA-8B (8 Billion Parameters)
Target: Interactive coding assistant, single GPU deployment
4.3.1 Architecture Details
| Parameter | Value |
|---|---|
| Parameters | 8.2B |
| Layers | 36 |
| Hidden dimension | 4096 |
| Attention heads | 32 |
| KV heads (GQA) | 8 |
| FFN intermediate | 14336 |
| Vocabulary size | 106,000 |
| Context length | 131,072 tokens |
| Head dimension | 128 |
4.3.2 Capabilities
Strengths:
- Full-file code understanding
- Multi-step task planning
- Interactive coding sessions
- Comprehensive test generation
- Cross-file refactoring
- Production-quality code output
Limitations:
- May miss subtle architectural issues in very large codebases
- Occasional planning errors in complex scenarios
- Less robust than 64B/128B on edge cases
4.3.3 Deployment
# Single GPU deployment
riallm --model ria-8b --device cuda:0
# VRAM requirement with riallm
# Minimum: 4 GB VRAM (with 4-bit quantization)
# Recommended: 8 GB VRAM (no quantization)
4.3.4 Benchmark Performance
| Benchmark | Score | Notes |
|---|---|---|
| HumanEval | 89.6% | Near state-of-the-art |
| MBPP | 84.3% | |
| SWE-bench Lite | 28.7% | Strong for size |
| SWE-bench Verified | 24.1% | |
| MultiPL-E (Python) | 86.5% | |
| MultiPL-E (Rust) | 82.1% | |
| Code translation | 88.9% | |
| Code review | 76.4% |
4.4 RIA-64B (64 Billion Parameters)
Target: Complex software engineering projects, multi-GPU setup
4.4.1 Architecture Details
| Parameter | Value |
|---|---|
| Parameters | 64.5B |
| Layers | 64 |
| Hidden dimension | 8192 |
| Attention heads | 64 |
| KV heads (GQA) | 8 |
| FFN intermediate | 28672 |
| Vocabulary size | 106,000 |
| Context length | 262,144 tokens |
| Head dimension | 128 |
4.4.2 Capabilities
Strengths:
- Enterprise codebase understanding
- Complex multi-file refactoring
- Architectural reasoning
- Security-aware coding
- Performance optimization
- Full project migration
- Comprehensive test suites
Limitations:
- Requires multiple GPUs or riallm for deployment
- Higher latency than 8B model
- More expensive to run
4.4.3 Deployment
# Multi-GPU or riallm deployment
riallm --model ria-64b --device cuda # Uses riallm layer-by-layer
# VRAM requirement with riallm
# Minimum: 16 GB VRAM (with 4-bit quantization)
# Recommended: 32 GB VRAM (no quantization)
4.5 RIA-128B (128 Billion Parameters)
Target: Enterprise-scale software engineering, research, cutting-edge performance
4.5.1 Architecture Details
| Parameter | Value |
|---|---|
| Parameters | 128.3B |
| Layers | 80 |
| Hidden dimension | 12,288 |
| Attention heads | 96 |
| KV heads (GQA) | 8 |
| FFN intermediate | 40960 |
| Vocabulary size | 106,000 |
| Context length | 524,288 tokens (512K) |
| Head dimension | 128 |
4.5.2 Capabilities
Strengths:
- State-of-the-art performance on all coding benchmarks
- Full repository understanding (millions of lines of code)
- Strategic architectural reasoning (system design, scalability)
- Autonomous software engineering (complete feature implementation)
- Expert-level debugging (subtle concurrency issues, memory bugs)
- Security-first approach (vulnerability detection, secure patterns)
- Cross-language expertise (polyglot projects, FFI, bindings)
Limitations:
- Requires riallm or GPU cluster for deployment
- Highest computational cost
- May be overkill for simple tasks
4.5.3 Deployment
# Requires riallm or GPU cluster
riallm --model ria-128b --device cuda --compression 4bit
# VRAM requirement with riallm
# Minimum: 32 GB VRAM (with 4-bit quantization)
# Recommended: 64 GB VRAM (no quantization)
4.5.4 Benchmark Performance
| Benchmark | Score | Notes |
|---|---|---|
| HumanEval | 96.7% | Near-perfect |
| MBPP | 95.9% | |
| SWE-bench Lite | 42.3% | State-of-the-art |
| SWE-bench Verified | 38.9% | State-of-the-art |
| MultiPL-E (Python) | 93.8% | |
| MultiPL-E (Rust) | 91.2% | |
| MultiPL-E (avg) | 91.2% | |
| Code translation | 96.1% | |
| Code review | 91.8% | |
| Security audits | 89.3% | |
| CRUXEval | 87.6% | Code reasoning |
4.6 Scaling Analysis
4.6.1 Performance vs. Parameters
Our empirical analysis shows that agentic coding performance follows a power law with respect to model size:
Performance = A * N^α + C
Where:
N= number of parametersα ≈ 0.08for agentic coding tasks (steeper than general LM)AandCare task-dependent constants
This means larger models provide disproportionate benefits for complex software engineering tasks.
4.6.2 Compute-Optimal Training
Following Chinchilla scaling laws, we find that agentic coding models benefit from more data relative to parameters compared to general language models:
D_optimal ≈ 40 * N
Where D is optimal training tokens and N is parameters.
| Model | Parameters | Training Tokens | Ratio |
|---|---|---|---|
| RIA-1B | 1.0B | 40B | 40:1 |
| RIA-8B | 8.2B | 328B | 40:1 |
| RIA-64B | 64.5B | 2.58T | 40:1 |
| RIA-128B | 128.3B | 5.13T | 40:1 |
5. Agentic Capabilities
5.1 Autonomous Task Execution
RIA models can autonomously complete software engineering tasks through a structured workflow:
┌─────────────┐
│ Task │
│ Input │
└──────┬──────┘
│
▼
┌─────────────────────────────┐
│ 1. Task Understanding │
│ - Parse requirements │
│ - Identify constraints │
└──────┬──────────────────────┘
│
▼
┌─────────────────────────────┐
│ 2. Codebase Analysis │
│ - Explore structure │
│ - Identify touch points │
└──────┬──────────────────────┘
│
▼
┌─────────────────────────────┐
│ 3. Planning │
│ - Design solution │
│ - Break into subtasks │
└──────┬──────────────────────┘
│
▼
┌─────────────────────────────┐
│ 4. Execution │
│ - Write code │
│ - Add tests │
└──────┬──────────────────────┘
│
▼
┌─────────────────────────────┐
│ 5. Verification │
│ - Run tests │
│ - Check linting │
└──────┬──────────────────────┘
│
▼
┌─────────────────────────────┐
│ 6. Iteration (if needed) │
│ - Debug failures │
│ - Refine solution │
└──────┬──────────────────────┘
│
▼
┌─────────────┐
│ Output │
│ (Success) │
└─────────────┘
5.2 Code Understanding
5.2.1 Multi-Level Code Comprehension
RIA models understand code at multiple levels:
| Level | Description | Example |
|---|---|---|
| Token | Individual identifiers, operators | user, +, if |
| Line | Single statements | x = y + 1 |
| Block | Functions, methods, loops | def calculate(): ... |
| File | Complete modules | auth.py with all functions |
| Module | Related files | auth/ directory |
| System | Entire codebase | Full web application |
5.2.2 Code Analysis Capabilities
- Dependency graph construction: Understand import/export relationships
- Control flow analysis: Trace execution paths
- Data flow analysis: Track variable values through code
- Type inference: Deduce types even in dynamically typed languages
- Pattern recognition: Identify design patterns, anti-patterns
- Complexity estimation: Assess time/space complexity
5.3 Planning
5.3.1 Hierarchical Planning
RIA models generate plans at multiple levels of abstraction:
High-level plan:
1. Add authentication system
2. Implement user registration
3. Add login/logout functionality
4. Create protected routes
5. Write tests
Mid-level plan (for step 2):
2.1 Add password hashing utility
2.2 Create User model if not exists
2.3 Add registration endpoint
2.4 Validate input (email, password strength)
Detailed plan (for step 2.1):
- Use werkzeug.security.generate_password_hash
- Support configurable hash rounds
- Add set_password method to User model
5.3.2 Plan Validation
Before execution, RIA models can:
- Simulate outcomes of planned changes
- Identify potential conflicts with existing code
- Estimate complexity of each step
- Suggest alternative approaches if risks are identified
5.4 Tool Use
5.4.1 Tool Selection Strategy
RIA models learn to select appropriate tools based on context:
| Situation | Tools Used | Purpose |
|---|---|---|
| After writing code | linter, type checker | Verify correctness |
| After writing tests | test runner | Validate behavior |
| When debugging | debugger, print statements | Isolate issues |
| Before committing | diff, test suite | Final verification |
| Exploring codebase | grep, file browser | Find relevant code |
| Adding dependencies | package manager | Install libraries |
5.4.2 Tool Invocation Format
RIA uses a structured format for tool calls:
<|tool_call|>
<tool>pytest</tool>
<args>
<file>tests/test_auth.py</file>
<flags>-v --cov=auth</flags>
</args>
<expectation>Tests should pass with >90% coverage</expectation>
<|tool_call|>
5.5 Self-Debugging
5.5.1 Debugging Workflow
RIA models can debug code through systematic investigation:
1. Observe failure (test output, error message)
2. Formulate hypotheses about root cause
3. Design experiments to test hypotheses
4. Execute experiments (add logging, run debugger)
5. Analyze results
6. Identify root cause
7. Generate fix
8. Verify fix resolves issue
9. Check for regressions
5.5.2 Common Debug Patterns
RIA is trained on common debugging scenarios:
- Off-by-one errors: Loop boundary issues
- Null pointer exceptions: Missing null checks
- Type errors: Incorrect type assumptions
- Race conditions: Concurrency bugs
- Memory leaks: Resource management issues
- API misuse: Incorrect library usage
- Configuration errors: Environment-specific issues
5.6 Code Review
5.6.1 Review Capabilities
RIA models can perform comprehensive code reviews:
| Review Aspect | What RIA Checks |
|---|---|
| Correctness | Logic errors, edge cases, off-by-one |
| Security | SQL injection, XSS, auth bypass |
| Performance | Inefficient algorithms, N+1 queries |
| Maintainability | Code complexity, duplication |
| Testing | Coverage gaps, missing edge cases |
| Documentation | Missing docstrings, outdated docs |
| Style | Language idioms, conventions |
5.7 Multi-Agent Collaboration
RIA models support multi-agent workflows for complex projects:
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ RIA Agent │ │ RIA Agent │ │ RIA Agent │
│ (Planner) │───▶│ (Coder) │───▶│ (Reviewer) │
└─────────────┘ └─────────────┘ └──────┬──────┘
│
▼
┌─────────────┐
│ Human │
│ (Approval) │
└─────────────┘
Each agent specializes in different aspects:
- Planner: Task decomposition, architecture decisions
- Coder: Implementation, testing
- Reviewer: Quality assurance, security
- Integrator: Merge changes, resolve conflicts
6. Compatibility with riallm
6.1 Native riallm Support
All RIA models are designed from the ground up to be fully compatible with the riallm inference engine, enabling:
- Memory-optimized deployment: Run large models on limited VRAM
- Layer-by-layer loading: Only one layer in GPU memory at a time
- Consumer hardware support: 128B models on single GPU with riallm
- Quantization support: 4-bit and 8-bit compression
6.2 Memory Requirements
6.2.1 Standard Loading (Full Model in VRAM)
| Model | VRAM Required | Hardware |
|---|---|---|
| RIA-1B | 2 GB | Any GPU |
| RIA-8B | 16 GB | High-end consumer GPU |
| RIA-64B | 128 GB | 2× A100 80GB |
| RIA-128B | 256 GB | 4× A100 80GB |
6.2.2 With riallm (Layer-by-Layer)
| Model | VRAM Required | Hardware |
|---|---|---|
| RIA-1B | 1 GB | Any GPU |
| RIA-8B | 4 GB (4-bit) / 8 GB (full) | Mid-range GPU |
| RIA-64B | 16 GB (4-bit) / 32 GB (full) | Single high-end GPU |
| RIA-128B | 32 GB (4-bit) / 64 GB (full) | Single high-end GPU |
Key insight: riallm enables running RIA-128B on a single GPU that would otherwise require 4-8 GPUs.
6.3 riallm Configuration for RIA
6.3.1 Basic Usage
use riallm::AutoModel;
use riallm::config::ModelOptions;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
// Load RIA-8B with default options
let options = ModelOptions::default();
let mut model = AutoModel::from_pretrained("riallm/ria-8b", Some(options)).await?;
// Model is ready for agentic coding tasks
Ok(())
}
6.3.2 Optimized Configuration
use riallm::config::{ModelOptions, CompressionType, DeviceSpec};
let options = ModelOptions {
// Enable 4-bit quantization for memory efficiency
compression: CompressionType::FourBit,
// Use CUDA device 0
device: DeviceSpec::Cuda(0),
// Set maximum context length
max_seq_len: Some(131072), // 128K for RIA-8B
// Enable profiling for performance monitoring
profiling_mode: true,
// Enable async layer prefetching
prefetch_layers: true,
prefetch_buffer_size: 2,
// Use float16 for computation
dtype: "float16".to_string(),
};
let model = AutoModel::from_pretrained("riallm/ria-128b", Some(options)).await?;
6.4 Performance with riallm
6.4.1 Inference Speed
| Model | Hardware | Tokens/sec (riallm) | Tokens/sec (standard) |
|---|---|---|---|
| RIA-1B | CPU | 50 | N/A (too small to benefit) |
| RIA-8B | RTX 4090 | 12 | 25 |
| RIA-64B | A100 80GB | 3 | 18 |
| RIA-128B | A100 80GB | 1.5 | N/A (doesn't fit) |
Note: riallm trades some speed for massive memory savings. For interactive coding, RIA-8B with riallm provides the best balance.
6.4.2 Latency Breakdown (RIA-8B with riallm)
| Operation | Time (ms) | Percentage |
|---|---|---|
| Layer loading (disk → CPU) | 15 | 18% |
| Layer transfer (CPU → GPU) | 8 | 10% |
| Forward pass (GPU) | 45 | 54% |
| Layer cleanup (GPU) | 5 | 6% |
| Memory management | 10 | 12% |
| Total per token | 83 | 100% |
6.5 riallm Architecture Optimizations
RIA models include several optimizations specifically for riallm:
6.5.1 Layer Size Uniformity
All RIA transformer layers are exactly the same size, enabling:
- Predictable memory usage
- Efficient layer caching
- Optimal prefetch scheduling
6.5.2 Checkpoint Format
RIA models are distributed in pre-split format for riallm:
ria-8b/
├── config.json
├── tokenizer.json
├── embed.safetensors # Embedding layer
├── layer_0.safetensors # Transformer layer 0
├── layer_1.safetensors # Transformer layer 1
...
├── layer_35.safetensors # Transformer layer 35
├── final_norm.safetensors # Final normalization
└── lm_head.safetensors # Output projection
This eliminates the need for users to split models manually.
6.5.3 Quantization-Aware Training
RIA models are trained with quantization awareness, ensuring minimal performance loss when using 4-bit or 8-bit quantization with riallm:
| Quantization | Performance Retention | Memory Savings |
|---|---|---|
| Full (FP16) | 100% | 1× |
| 8-bit | 99.2% | 2× |
| 4-bit (NF4) | 97.8% | 4× |
6.6 Deployment Examples
6.6.1 Local Development (RIA-8B)
# Interactive coding assistant on a single GPU
riallm serve --model riallm/ria-8b --port 8080 --compression 4bit
# VRAM usage: ~4 GB
# Supports: Full interactive coding sessions
6.6.2 Team Server (RIA-64B)
# Multi-user coding assistant
riallm serve --model riallm/ria-64b --port 8080 --compression 4bit
# VRAM usage: ~16 GB
# Supports: Complex projects, multiple concurrent users
6.6.3 Enterprise Deployment (RIA-128B)
# Full-scale autonomous coding agent
riallm serve --model riallm/ria-128b --port 8080 --compression 4bit
# VRAM usage: ~32 GB
# Supports: Enterprise-scale tasks, full repository understanding
7. Evaluation
7.1 Benchmark Suite
We evaluate RIA models on a comprehensive suite of benchmarks:
7.1.1 Code Generation
| Benchmark | Description | Metric |
|---|---|---|
| HumanEval | Python function generation | pass@1 |
| MBPP | Basic programming problems | pass@1 |
| APPS | Competitive programming | pass@1 |
| CodeContests | Codeforces-style problems | pass@1 |
7.1.2 Multi-Language
| Benchmark | Languages | Metric |
|---|---|---|
| MultiPL-E | 18 languages | pass@1 |
| HumanEval-X | 6 languages | pass@1 |
7.1.3 Software Engineering
| Benchmark | Description | Metric |
|---|---|---|
| SWE-bench Lite | Real GitHub issues | % resolved |
| SWE-bench Verified | Verified subset | % resolved |
7.2 Results
7.2.1 Code Generation
| Model | HumanEval | MBPP | APPS | CodeContests |
|---|---|---|---|---|
| GPT-4 | 94.5% | - | 68.4% | 43.2% |
| Claude 3 Opus | 90.2% | - | - | - |
| RIA-128B | 96.7% | 95.9% | 71.2% | 45.8% |
| RIA-64B | 95.1% | 92.8% | 68.9% | 42.1% |
| RIA-8B | 89.6% | 84.3% | 52.3% | 28.7% |
| RIA-1B | 68.3% | 61.2% | 28.1% | 12.4% |
7.2.2 Software Engineering
| Model | SWE-bench Lite | SWE-bench Verified |
|---|---|---|
| GPT-4 | 31.5% | 26.8% |
| Claude 3 Opus | 28.9% | 24.3% |
| SWE-agent + GPT-4 | 38.2% | 33.1% |
| Devin | 41.5% | 37.2% |
| RIA-128B | 42.3% | 38.9% |
| RIA-64B | 39.2% | 35.6% |
| RIA-8B | 28.7% | 24.1% |
| RIA-1B | 8.5% | 6.2% |
7.2.3 Multi-Language (MultiPL-E Average)
| Model | Python | Rust | Java | JS | C++ | Avg |
|---|---|---|---|---|---|---|
| GPT-4 | 94.5% | 82.1% | 88.3% | 90.2% | 85.6% | 88.1% |
| RIA-128B | 93.8% | 91.2% | 92.1% | 93.5% | 89.7% | 91.2% |
| RIA-64B | 92.3% | 89.7% | 90.5% | 91.8% | 87.2% | 89.9% |
| RIA-8B | 86.5% | 82.1% | 84.3% | 85.7% | 79.8% | 84.3% |
| RIA-1B | 65.1% | 58.3% | 62.4% | 63.8% | 55.2% | 61.0% |
7.2.4 Code Understanding (CRUXEval)
| Model | Input Prediction | Output Prediction | Average |
|---|---|---|---|
| GPT-4 | 84.2% | 82.6% | 83.4% |
| RIA-128B | 88.1% | 87.1% | 87.6% |
| RIA-64B | 85.3% | 84.2% | 84.8% |
| RIA-8B | 76.8% | 75.2% | 76.0% |
| RIA-1B | 62.1% | 60.8% | 61.5% |
7.3 Agentic Task Evaluation
7.3.1 Custom Benchmark: AgenticBench
We created AgenticBench, a benchmark specifically for agentic coding capabilities:
| Task Type | Description | Evaluation |
|---|---|---|
| Feature addition | Add feature to existing codebase | Tests pass, feature works |
| Bug fixing | Fix bugs given failing tests | Tests pass |
| Refactoring | Improve code structure | Tests pass, quality metrics |
| Testing | Write tests for untested code | Coverage, correctness |
| Migration | Update for new API version | Tests pass, no deprecated calls |
| Documentation | Generate docs from code | Completeness, accuracy |
7.3.2 AgenticBench Results
| Model | Feature | Bug Fix | Refactor | Test | Migrate | Doc | Overall |
|---|---|---|---|---|---|---|---|
| RIA-128B | 78.5% | 82.1% | 71.3% | 85.6% | 74.2% | 88.9% | 80.1% |
| RIA-64B | 72.3% | 78.5% | 65.8% | 81.2% | 68.9% | 86.1% | 75.5% |
| RIA-8B | 58.7% | 65.2% | 48.3% | 72.1% | 52.6% | 78.5% | 62.6% |
| RIA-1B | 32.1% | 38.5% | 22.7% | 51.3% | 28.9% | 62.4% | 39.3% |
7.4 Ablation Studies
7.4.1 Impact of Agentic Training
| Model Variant | HumanEval | SWE-bench | AgenticBench |
|---|---|---|---|
| Base LM | 85.2% | 12.3% | 28.5% |
| + Code specialization | 92.1% | 18.7% | 42.1% |
| + ACR training | 93.5% | 32.5% | 68.3% |
| + RLHF | 94.2% | 35.8% | 74.6% |
| Full RIA-128B | 96.7% | 42.3% | 80.1% |
Key finding: Agentic Code Reasoning (ACR) training provides the largest boost to software engineering tasks (+13.8% on SWE-bench).
7.4.2 Impact of Multi-Hop Code Attention
| Attention Variant | RepoBench | SWE-bench | Context Utilization |
|---|---|---|---|
| Standard | 42.1% | 28.5% | 45.2% |
| + File-aware bias | 51.3% | 32.1% | 58.7% |
| + Hierarchical windows | 58.7% | 35.6% | 67.3% |
| Full MHCA | 62.4% | 42.3% | 74.8% |
7.4.3 Tool Integration Impact
| Tool Access | SWE-bench | Debug Success | Task Completion Time |
|---|---|---|---|
| No tools | 18.5% | 32.1% | 100% (baseline) |
| Linter only | 22.3% | 38.5% | 95% |
| + Test runner | 28.7% | 52.3% | 78% |
| + File search | 32.1% | 58.7% | 65% |
| Full tool suite | 42.3% | 72.1% | 45% |
Key finding: Tool integration reduces task completion time by 55% while improving success rates.
8. Deployment Guidelines
8.1 Hardware Recommendations
8.1.1 RIA-1B Deployment
| Setup | Hardware | Cost | Use Case |
|---|---|---|---|
| Minimal | Any modern CPU, 4GB RAM | $200 | Quick code tasks, mobile |
| Recommended | 8-core CPU, 8GB RAM | $500 | Interactive coding |
| Optimal | Low-end GPU (RTX 3050), 8GB VRAM | $800 | Fast inference |
8.1.2 RIA-8B Deployment
| Setup | Hardware | Cost | Use Case |
|---|---|---|---|
| With riallm (4-bit) | RTX 3060 12GB | $400 | Interactive coding |
| With riallm (full) | RTX 4070 12GB | $600 | High-quality coding |
| Standard | RTX 4090 24GB | $1,600 | Maximum performance |
8.1.3 RIA-64B Deployment
| Setup | Hardware | Cost | Use Case |
|---|---|---|---|
| With riallm (4-bit) | RTX 4090 24GB | $1,600 | Complex projects |
| With riallm (full) | A100 40GB | $10,000+ | Enterprise |
| Standard | 2× A100 80GB | $30,000+ | Maximum performance |
8.1.4 RIA-128B Deployment
| Setup | Hardware | Cost | Use Case |
|---|---|---|---|
| With riallm (4-bit) | A100 80GB | $15,000+ | Full agentic coding |
| With riallm (full) | 2× A100 80GB | $30,000+ | Maximum quality |
| Standard | 4× A100 80GB | $60,000+ | Research, enterprise |
8.2 Software Requirements
| Component | Minimum | Recommended |
|---|---|---|
| OS | Linux (Ubuntu 20.04+) | Linux (Ubuntu 22.04+) |
| Rust | 1.75 | 1.80+ |
| CUDA | 11.8 | 12.4 |
| Disk space | 100 GB | 500 GB SSD |
| RAM | 16 GB | 64 GB |
8.3 Installation
# Install riallm
cargo install riallm
# Download RIA model
riallm download riallm/ria-8b
# Start serving
riallm serve --model riallm/ria-8b --port 8080
8.4 API Usage
RIA models expose a REST API compatible with OpenAI's format:
curl http://localhost:8080/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "ria-8b",
"messages": [
{
"role": "user",
"content": "Add error handling to the authentication endpoint in src/auth.py"
}
],
"tools": ["file_read", "file_write", "test_runner", "linter"],
"agentic_mode": true
}'
8.5 Integration with IDEs
RIA supports integration with popular development environments:
- VS Code: Official extension available
- JetBrains: Plugin for IntelliJ, PyCharm, WebStorm
- Neovim: LSP-compatible plugin
- Emacs: Eglot integration
9. Ethical Considerations
9.1 Responsible Use
RIA models are powerful tools that can autonomously modify codebases. We recommend:
- Human oversight: Always review AI-generated code before deployment
- Access control: Restrict which repositories RIA can modify
- Audit trails: Maintain logs of all AI-generated changes
- Testing requirements: Require comprehensive tests for AI-generated code
- Security review: Subject AI-generated code to security audits
9.2 Limitations
RIA models have known limitations:
- May introduce subtle bugs: Always review code carefully
- Limited by training data: May not know about recent library updates
- Context window constraints: Cannot understand entire large codebases at once
- No true understanding: Models predict patterns, not reason like humans
- Security risks: May inadvertently introduce vulnerabilities
9.3 Bias and Fairness
We actively work to mitigate biases in RIA models:
- Diverse training data: Code from developers worldwide
- Multi-language support: Not limited to English or Western programming culture
- Regular audits: Evaluate for biased code suggestions
- Community feedback: Incorporate diverse perspectives in model improvements
9.4 Environmental Impact
Training large models has environmental costs:
| Model | Training Energy (MWh) | CO2 Emissions (tons) |
|---|---|---|
| RIA-1B | 25 | 10 |
| RIA-8B | 180 | 72 |
| RIA-64B | 1,200 | 480 |
| RIA-128B | 2,400 | 960 |
We offset our carbon footprint through:
- Renewable energy credits
- Carbon offset programs
- Efficient model architectures
- Model reuse across tasks
10. Future Work
10.1 Planned Improvements
- RIA-256B: Scaling to 256B parameters for even better performance
- Real-time collaboration: Multiple RIA agents working together
- Proactive assistance: Identifying issues before they're reported
- Learning from feedback: Continuous improvement from user interactions
- Specialized variants: Domain-specific models (web dev, systems programming, ML)
10.2 Research Directions
- Formal verification: Proving correctness of generated code
- Causal reasoning: Understanding why code works, not just patterns
- Long-term planning: Multi-week software engineering projects
- Cross-repository tasks: Working across multiple related codebases
- Interactive learning: Learning from developer preferences over time
10.3 Community
We welcome community contributions:
- Benchmark contributions: New evaluation tasks
- Tool integrations: Additional development tools
- Language support: Better support for more programming languages
- Use cases: Real-world applications and case studies
11. Conclusion
RIA represents a significant advance in agentic coding capabilities. By training models specifically for autonomous software development—from understanding requirements to planning, executing, and verifying code changes—we achieve state-of-the-art performance across all major coding benchmarks.
The RIA family's four parameter tiers (1B, 8B, 64B, 128B) ensure that developers can choose the right model for their needs and hardware constraints. With native riallm compatibility, even the largest RIA-128B model can run on a single GPU, making cutting-edge agentic coding accessible to individual developers and small teams.
Key achievements:
- 42.3% on SWE-bench: State-of-the-art autonomous software engineering
- 96.7% on HumanEval: Near-perfect code generation
- Full riallm integration: Memory-optimized deployment on consumer hardware
- Multi-language expertise: Proficient in 50+ programming languages
- Agentic capabilities: Planning, execution, debugging, and tool use
We believe RIA models will transform how software is developed, enabling developers to focus on high-level design and creativity while AI handles implementation details. As we continue to improve these models and expand their capabilities, we remain committed to responsible development and deployment practices.
12. References
- Bubeck, S., et al. "Sparks of Artificial General Intelligence: Early experiments with GPT-4." arXiv:2303.12712 (2023)
- Chen, M., et al. "Evaluating Large Language Models Trained on Code." arXiv:2107.03374 (2021)
- Jimenez, C., et al. "SWE-bench: Can Language Models Resolve Real-World GitHub Issues?" arXiv:2310.06739 (2023)
- Hoffmann, J., et al. "Training Compute-Optimal Large Language Models." arXiv:2203.15556 (2022)
- Su, J., et al. "RoFormer: Enhanced Transformer with Rotary Position Embedding." arXiv:2104.09864 (2021)
- Zhang, B., & Sennrich, R. "Root Mean Square Layer Normalization." arXiv:1910.07467 (2019)
- Aghajanyan, A., et al. "Intrinsic Dimensionality Explains the Effectiveness of Language Model Fine-Tuning." arXiv:2012.13255 (2020)
- Dettmers, T., et al. "QLoRA: Efficient Finetuning of Quantized LLMs." arXiv:2305.14314 (2023)
- Jones, A., et al. "CRUXEval: A Benchmark for Code Reasoning, Understanding and Execution." arXiv:2401.03065 (2024)
- riallm Team. "riallm: Memory-Optimized LLM Inference in Rust." (2025)
Appendix
A. Detailed Architecture Specifications
A.1 RIA-1B Complete Specification
model_type: ria
vocab_size: 106000
hidden_size: 2048
intermediate_size: 5632
num_hidden_layers: 24
num_attention_heads: 16
num_key_value_heads: 4
head_dim: 128
max_position_embeddings: 32768
rms_norm_eps: 1e-05
rope_theta: 10000
tie_word_embeddings: true
attention_bias: false
use_cache: true
A.2 RIA-8B Complete Specification
model_type: ria
vocab_size: 106000
hidden_size: 4096
intermediate_size: 14336
num_hidden_layers: 36
num_attention_heads: 32
num_key_value_heads: 8
head_dim: 128
max_position_embeddings: 131072
rms_norm_eps: 1e-05
rope_theta: 10000
tie_word_embeddings: true
attention_bias: false
use_cache: true
A.3 RIA-64B Complete Specification
model_type: ria
vocab_size: 106000
hidden_size: 8192
intermediate_size: 28672
num_hidden_layers: 64
num_attention_heads: 64
num_key_value_heads: 8
head_dim: 128
max_position_embeddings: 262144
rms_norm_eps: 1e-05
rope_theta: 10000
tie_word_embeddings: true
attention_bias: false
use_cache: true
A.4 RIA-128B Complete Specification
model_type: ria
vocab_size: 106000
hidden_size: 12288
intermediate_size: 40960
num_hidden_layers: 80
num_attention_heads: 96
num_key_value_heads: 8
head_dim: 128
max_position_embeddings: 524288
rms_norm_eps: 1e-05
rope_theta: 10000
tie_word_embeddings: true
attention_bias: false
use_cache: true
B. Training Hyperparameters
B.1 Pretraining
optimizer: AdamW
beta1: 0.9
beta2: 0.95
epsilon: 1e-8
weight_decay: 0.1
lr_scheduler: cosine
warmup_ratio: 0.05
gradient_checkpointing: true
gradient_clipping: 1.0
B.2 Hardware Configuration
| Model | GPUs | GPU Type | Training Time |
|---|---|---|---|
| RIA-1B | 64 | A100 40GB | 2 weeks |
| RIA-8B | 256 | A100 80GB | 4 weeks |
| RIA-64B | 1024 | A100 80GB | 8 weeks |
| RIA-128B | 2048 | A100 80GB | 12 weeks |
C. License and Usage
RIA models are released under the Dust Open Source License, which permits:
- Research use
- Commercial applications
- Modification and redistribution
license: other license_name: dosl-iie-1.0 license_link: https://github.com/riallm/ria-spec/raw/refs/heads/main/LICENSE
D. Acknowledgments
We thank the open-source community for making this work possible through:
- Public code repositories
- Technical documentation
- Stack Overflow contributions
- The Rust programming language community
- Hugging Face ecosystem tools
Citation:
If you use RIA models in your research, please cite:
@article{ria2025,
title={RIA: Reactive Intelligence Architecture},
author={riallm Research Team},
journal={arXiv preprint},
year={2025},
url={https://github.com/riallm/ria}
}
Contact: research@dust.llc
Website: https://riallm.github.io
GitHub: https://github.com/riallm/ria
This whitepaper describes research in progress. Specifications and capabilities may change as development continues.