mirror of
https://github.com/0xMassi/webclaw.git
synced 2026-07-22 07:11:01 +02:00
- Bootstrap crates/noxa-rag with lib+binary layout - EmbedProvider trait (1 method: embed) - VectorStore trait (4 methods: upsert, delete_by_url, search, name) - RagError enum (#[non_exhaustive], thiserror, From impls) - Types: Chunk, Point, PointPayload, SearchResult - Config: RagConfig with serde tagged enums for all providers - load_config() with embed_concurrency > 0 validation - Tokenizer Sync compile-time assertion in lib.rs - Stub implementations for all modules (noxa-68r.2-.8)
5 lines
168 B
Rust
5 lines
168 B
Rust
// noxa-rag-daemon — implemented in noxa-68r.8
|
|
fn main() {
|
|
eprintln!("[noxa-rag] daemon stub — not yet implemented (noxa-68r.8)");
|
|
std::process::exit(1);
|
|
}
|