deepwiki-rs 1.2.5

deepwiki-rs(also known as Litho) is a high-performance automatic generation engine for C4 architecture documentation, developed using Rust. It can intelligently analyze project structures, identify core components, parse dependency relationships, and leverage large language models (LLMs) to automatically generate professional architecture documentation.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub struct MemoryScope;

impl MemoryScope {
    pub const PREPROCESS: &'static str = "preprocess";
}

pub struct ScopedKeys;

impl ScopedKeys {
    pub const ORIGINAL_DOCUMENT: &'static str = "original_document";
    pub const PROJECT_STRUCTURE: &'static str = "project_structure";
    pub const CODE_INSIGHTS: &'static str = "code_insights";
    pub const RELATIONSHIPS: &'static str = "relationships";
}