bitrouter_providers/lib.rs
1pub mod util;
2
3#[cfg(feature = "openai")]
4pub mod openai;
5
6#[cfg(feature = "anthropic")]
7pub mod anthropic;
8
9#[cfg(feature = "google")]
10pub mod google;
11
12#[cfg(feature = "mcp")]
13pub mod mcp;
14
15#[cfg(feature = "rest")]
16pub mod rest;
17
18#[cfg(feature = "acp")]
19pub mod acp;
20
21#[cfg(feature = "agentskills")]
22pub mod agentskills;