pub trait ProviderSchema {
// Required methods
fn to_openai_schema(&self) -> Value;
fn to_anthropic_schema(&self) -> Value;
fn to_gemini_schema(&self) -> Value;
fn to_json_schema(&self) -> Value;
}Expand description
Provider-specific schema formats