vtcode-core 0.103.1

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
//! Anthropic API compatibility layer for VT Code
//!
//! Provides compatibility with the Anthropic Messages API to help connect existing
//! applications to VT Code, including tools like Claude Code.

#[cfg(feature = "anthropic-api")]
pub use crate::llm::providers::anthropic::api as server;