An open-source Rust library for building AI-powered applications, inspired by the Vercel AI SDK. It provides a robust, type-safe, and easy-to-use interface for interacting with various Large Language Models (LLMs).
//! Anthropic-specific metadata for extensions.
/// Metadata specific to Anthropic provider thinking functionality.
#[derive(Debug, Clone, Default)]pub(crate)structAnthropicThinkingMetadata{/// The signature returned by Anthropic models for thinking blocks.
////// This must be preserved and sent back in subsequent turns
/// for extended thinking to work correctly.
pubsignature:Option<String>,
}