Skip to content

Commit a20d1d6

Browse files
committed
Chore: Remove legacy Rag engine and Semantic search functionalities from codegraph cli
1 parent 7a48b45 commit a20d1d6

File tree

11 files changed

+6
-801
lines changed

11 files changed

+6
-801
lines changed

CLEAN_INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Follow these steps to remove every trace of a previous CodeGraph MCP installatio
3737
7. **Rebuild your development binary**
3838
Inside the repo, rebuild with the required features so the local `target/` tree matches your latest changes:
3939
```bash
40-
cargo build -p codegraph-mcp --features "ai-enhanced,server-http"
40+
cargo build -p codegraph-mcp --features "server-http"
4141
```
4242

4343
8. **Start the MCP server with the new binary**

crates/codegraph-ai/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ pub mod llm_provider;
44
pub mod ml;
55
pub mod optimization;
66
pub mod qwen_simple;
7-
pub mod rag;
8-
pub mod semantic;
97

108
// Cloud LLM providers
119
#[cfg(feature = "anthropic")]
@@ -19,4 +17,3 @@ pub use agentic_schemas::*;
1917
pub use llm_factory::LLMProviderFactory;
2018
pub use llm_provider::*;
2119
pub use qwen_simple::{QwenClient, QwenConfig, QwenResult};
22-
pub use semantic::search::*;

0 commit comments

Comments
 (0)