bamboo-infrastructure 2026.5.4

Infrastructure services and integrations for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! LLM Providers
//!
//! This module contains various LLM provider implementations.

pub mod anthropic;
pub mod bodhi;
pub mod common;
pub mod copilot;
pub mod gemini;
pub mod openai;

pub use anthropic::AnthropicProvider;
pub use bodhi::BodhiProvider;
pub use copilot::CopilotProvider;
pub use gemini::GeminiProvider;
pub use openai::OpenAIProvider;