RFC 0002 (runbook-action-lookup): - Add action metadata storage to runbooks - Implement blue_runbook_lookup with word-based matching - Add blue_runbook_actions to list all actions RFC 0004 (adr-adherence): - Add blue_adr_list, blue_adr_get, blue_adr_relevant, blue_adr_audit - Implement keyword-based relevance matching with stem-like prefixes - Add adr:N query support in blue_search RFC 0005 (local-llm-integration): - Create blue-ollama crate for embedded Ollama server management - Add LlmProvider trait and MockLlm in blue-core - Implement OllamaLlm with HTTP client for model operations - Add MCP tools: blue_llm_start/stop/status, blue_model_pull/list/remove/warmup - Support BLUE_OLLAMA_PATH env var for air-gapped builds Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
541 B
TOML
24 lines
541 B
TOML
[package]
|
|
name = "blue-ollama"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Embedded Ollama server management for Blue"
|
|
|
|
[dependencies]
|
|
blue-core.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
reqwest.workspace = true
|
|
sha2.workspace = true
|
|
dirs.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
|
|
[build-dependencies]
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|
|
sha2 = "0.10"
|