- Export `LLMProvider` from `owlen-core` and replace public `Provider` re-exports. - Convert `OllamaProvider` to implement the new `LLMProvider` trait with associated future types. - Adjust imports and trait bounds in `remote_client.rs` to use the updated types. - Add comprehensive provider interface tests (`provider_interface.rs`) verifying router routing and provider registry model listing with `MockProvider`. - Align dependency versions across workspace crates by switching to workspace-managed versions. - Extend CI (`.woodpecker.yml`) with a dedicated test step and generate coverage reports. - Update architecture documentation to reflect the new provider abstraction.
22 lines
538 B
TOML
22 lines
538 B
TOML
[package]
|
|
name = "owlen-mcp-prompt-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "MCP server that renders prompt templates (YAML) for Owlen"
|
|
license = "AGPL-3.0"
|
|
|
|
[dependencies]
|
|
owlen-core = { path = "../owlen-core" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
tokio = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
handlebars = { workspace = true }
|
|
dirs = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
[lib]
|
|
name = "owlen_mcp_prompt_server"
|
|
path = "src/lib.rs"
|