vtcode-core 0.104.1

Core library for VT Code - a Rust-based terminal coding agent
//! Gemini wire types and transport helpers owned by the provider tree.

pub mod client;
pub mod function_calling;
pub mod interactions;
pub mod models;
pub mod streaming;

pub use client::{Client, ClientConfig, RetryConfig};
pub use function_calling::{FunctionCall, FunctionCallingConfig, FunctionResponse};
pub use interactions::{
    Interaction, InteractionContent, InteractionFunctionCall, InteractionInput, InteractionOutput,
    InteractionRequest, InteractionResult, InteractionTool, InteractionToolChoice, InteractionTurn,
    InteractionTurnContent, InteractionUsage,
};
pub use models::request::{GenerationConfig, ThinkingConfig};
pub use models::{
    Candidate, Content, FunctionDeclaration, GenerateContentRequest, GenerateContentResponse,
    InlineData, Part, ServerToolCall, ServerToolResponse, SystemInstruction, Tool, ToolConfig,
};
pub use streaming::{
    StreamingCandidate, StreamingConfig, StreamingError, StreamingMetrics, StreamingProcessor,
    StreamingResponse,
};