codex-convert-proxy 0.1.4

A high-performance proxy server that converts between different AI API formats
Documentation
//! DeepSeek provider implementation.

use crate::providers::trait_::Provider;

/// DeepSeek provider.
///
/// DeepSeek is mostly compatible with standard Chat API.
/// Minimal transformation needed - all trait methods use default implementations.
pub struct DeepSeekProvider;

impl Default for DeepSeekProvider {
    fn default() -> Self {
        Self
    }
}

impl DeepSeekProvider {
    pub fn new() -> Self {
        Self
    }
}

impl Provider for DeepSeekProvider {
    fn name(&self) -> &'static str {
        "deepseek"
    }
}