anthropic-types 0.1.42

Type definitions for Anthropic API communication
Documentation
use serde::{Deserialize, Serialize};

/// Tool choice configuration
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(tag = "type")]
pub enum ToolChoice {
    /// Model decides whether to use tools
    #[serde(rename = "auto")]
    Auto,

    /// Force model to use a specific tool
    #[serde(rename = "tool")]
    Tool {
        /// Name of the tool to use
        name: String,
    },

    /// Force model to use any available tool
    #[serde(rename = "any")]
    Any,

    /// Force model not to use tools
    #[serde(rename = "none")]
    None,
}

impl ToolChoice {
    /// Create a new auto tool choice
    pub fn auto() -> Self {
        Self::Auto
    }

    /// Create a new tool-specific choice
    pub fn specific(name: impl Into<String>) -> Self {
        Self::Tool { name: name.into() }
    }

    /// Create a new any tool choice
    pub fn any() -> Self {
        Self::Any
    }

    /// Create a new none tool choice
    pub fn none() -> Self {
        Self::None
    }
}