Skip to main content

vtcode_core/anthropic_api/
mod.rs

1//! Anthropic API compatibility layer for VT Code
2//!
3//! Provides compatibility with the Anthropic Messages API to help connect existing
4//! applications to VT Code, including tools like Claude Code.
5
6#[cfg(feature = "anthropic-api")]
7pub use crate::llm::providers::anthropic::api as server;