cqs 1.25.0

Code intelligence and RAG for AI agents. Semantic search, call graphs, impact analysis, type dependencies, and smart context assembly — in single tool calls. 54 languages + L5X/L5K PLC exports, 91.2% Recall@1 (BGE-large), 0.951 MRR (296 queries). Local ML, GPU-accelerated.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Training commands — planning, task context, training data, model export

mod export_model;
mod plan;
pub(crate) mod task;
mod train_data;
mod train_pairs;

pub(crate) use export_model::cmd_export_model;
pub(crate) use plan::cmd_plan;
pub(crate) use task::cmd_task;
pub(crate) use train_data::cmd_train_data;
pub(crate) use train_pairs::cmd_train_pairs;