ruvllm 2.2.0

LLM serving runtime with Ruvector integration - Paged attention, KV cache, and SONA learning
Documentation
//! Comprehensive test suite for RuvLLM
//!
//! This module organizes all unit tests for the RuvLLM crate.

mod activation_tests;
mod attention_tests;
mod generation_tests;
mod gguf_tests;
mod witness_log_tests;

// Basic lib configuration tests (moved from lib.rs)
use crate::RuvLLMConfig;

#[test]
fn test_config_default() {
    let config = RuvLLMConfig::default();
    assert_eq!(config.max_sessions, 1000);
    assert_eq!(config.embedding_dim, 768);
}