vtcode-core 0.104.1

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
//! Rate limiter for API requests and tool calls
//!
//! Re-exports the canonical rate limiter from the tools module.

pub use crate::tools::rate_limiter::{
    PerToolRateLimiter as RateLimiter, RateLimiterConfig, try_acquire, try_acquire_for,
};