llm-connector 1.4.0

Next-generation Rust library for LLM protocol abstraction with native multi-modal support. Supports 12+ providers (OpenAI, Anthropic, Google, Aliyun, Zhipu, Ollama, Tencent, Volcengine, LongCat, Moonshot, DeepSeek, Xiaomi) with clean Protocol/Provider separation, type-safe interface, and universal streaming.
Documentation
//! Common Authentication Strategies

use std::collections::HashMap;

#[derive(Clone, Debug)]
pub enum AuthStrategy {
    None,
    Bearer {
        api_key: String,
    },
    ApiKeyHeader {
        api_key: String,
        header_name: String,
    },
}

#[derive(Clone, Debug, Default)]
pub struct HeaderPolicy {
    pub headers: Vec<(String, String)>,
}

#[derive(Clone, Debug, Default)]
pub struct RequestMetadataPolicy {
    pub header_overrides: HashMap<String, String>,
}

pub fn materialize_auth_headers(strategy: &AuthStrategy) -> Vec<(String, String)> {
    match strategy {
        AuthStrategy::None => vec![],
        AuthStrategy::Bearer { api_key } => bearer_auth(api_key),
        AuthStrategy::ApiKeyHeader {
            api_key,
            header_name,
        } => api_key_header(api_key, header_name),
    }
}

pub fn apply_header_policy(
    mut headers: Vec<(String, String)>,
    policy: &HeaderPolicy,
) -> Vec<(String, String)> {
    headers.extend(policy.headers.clone());
    headers
}

pub fn merge_metadata_policies(
    base: RequestMetadataPolicy,
    extra: RequestMetadataPolicy,
) -> RequestMetadataPolicy {
    let mut merged = base.header_overrides;
    merged.extend(extra.header_overrides);
    RequestMetadataPolicy {
        header_overrides: merged,
    }
}

/// Create standard Bearer token header
pub fn bearer_auth(api_key: &str) -> Vec<(String, String)> {
    vec![
        ("Authorization".to_string(), format!("Bearer {}", api_key)),
        ("Content-Type".to_string(), "application/json".to_string()),
    ]
}

/// Create standard API Key header (e.g. for Anthropic)
pub fn api_key_header(api_key: &str, header_name: &str) -> Vec<(String, String)> {
    vec![
        (header_name.to_string(), api_key.to_string()),
        ("Content-Type".to_string(), "application/json".to_string()),
    ]
}