blue/apps/blue-cli/Cargo.toml
Eric Garcia d77ea4ba3f feat: add Ollama integration for semantic file indexing
Implements the AI-powered indexing component of RFC 0010:
- Add indexer module with LlmProvider abstraction
- Integrate qwen2.5:3b via Ollama for local file analysis
- Extract summaries, relationships, and symbols from source files
- Support partial indexing for files >1000 lines
- Wire indexer to all CLI index commands (--all, --diff, --file, --refresh)

The indexer generates structured YAML output with:
- One-sentence file summaries
- Relationship descriptions for semantic search
- Symbol-level indexing with line numbers

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-24 18:51:48 -05:00

27 lines
578 B
TOML

[package]
name = "blue"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Blue CLI - Welcome home"
build = "build.rs"
[[bin]]
name = "blue"
path = "src/main.rs"
[dependencies]
blue-core.workspace = true
blue-mcp.workspace = true
blue-ollama.workspace = true
clap.workspace = true
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
chrono.workspace = true
reqwest.workspace = true
serde.workspace = true
dirs.workspace = true
tempfile.workspace = true
serde_yaml.workspace = true