vtcode-core 0.136.0

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
8
//! Optimized LLM client with connection pooling and request batching.
//!
//! Re-exported from `vtcode_llm` to eliminate duplication.

pub use vtcode_llm::optimized_client::{
    BatchedRequest, ConnectionPool, OptimizedLLMClient, OptimizedRequest, OptimizedResponse, RateLimiter,
    RequestBatcher,
};