praxio 0.2.0

MCP server for LLM delegation - enables AI agents to delegate tasks to specialist models without context pollution
Documentation
1
2
3
4
5
6
7
8
9
// Allow turbomcp macros to use their own cfg conditions
#![allow(unexpected_cfgs)]

pub mod error;
pub mod llm;
pub mod server;

pub use error::LlmError;
pub use server::PraxioServer;