vtcode-llm 0.136.5

LLM provider abstraction, client implementations, and streaming for VT Code
//! 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,
};