llm-connector 0.2.0

A lightweight Rust library for protocol adaptation across multiple LLM providers. Focuses solely on converting between different LLM provider APIs and providing a unified OpenAI-compatible interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
//! Provider registry for managing multiple LLM providers
//!
//! This module provides a centralized registry for managing multiple LLM providers.
//! It allows you to register providers and route requests to the appropriate provider
//! based on configuration.
//!
//! ## Features
//!
//! - Centralized provider management
//! - Configuration-driven provider registration
//! - Dynamic provider lookup
//! - Support for multiple providers simultaneously
//!
//! ## Example
//!
//! ```rust,no_run
//! use llm_connector::registry::{ProviderRegistry, ProviderRegistryBuilder};
//! use llm_connector::config::ProviderConfig;
//! use llm_connector::protocols::openai::deepseek;
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! // Create a registry
//! let mut registry = ProviderRegistry::new();
//!
//! // Register a provider
//! let config = ProviderConfig::new("api-key");
//! registry.register("deepseek", config, deepseek())?;
//!
//! // Get a provider
//! let provider = registry.get_provider("deepseek").unwrap();
//! # Ok(())
//! # }
//! ```

use crate::config::{ProviderConfig, RegistryConfig};
use crate::error::LlmConnectorError;
use crate::protocols::core::{GenericProvider, Provider, ProviderAdapter};
use std::collections::HashMap;

/// Unified provider registry for managing all LLM providers
pub struct ProviderRegistry {
    providers: HashMap<String, Box<dyn Provider>>,
    configs: HashMap<String, ProviderConfig>,
}

impl ProviderRegistry {
    /// Create a new empty provider registry
    pub fn new() -> Self {
        Self {
            providers: HashMap::new(),
            configs: HashMap::new(),
        }
    }

    /// Create a provider registry from a configuration
    pub fn from_config(config: RegistryConfig) -> Result<Self, LlmConnectorError> {
        let mut registry = Self::new();

        for (name, entry) in config.providers {
            // Extract the config from the entry
            let internal_config = entry.config;

            // Register the provider based on protocol
            match entry.protocol.as_str() {
                "aliyun" => {
                    registry.register(
                        &name,
                        internal_config,
                        crate::protocols::aliyun::aliyun(),
                    )?;
                }
                "openai" => {
                    // Determine which OpenAI provider based on name
                    match name.as_str() {
                        "deepseek" => registry.register(
                            &name,
                            internal_config,
                            crate::protocols::openai::deepseek(),
                        )?,
                        "zhipu" => registry.register(
                            &name,
                            internal_config,
                            crate::protocols::openai::zhipu(),
                        )?,
                        "moonshot" => registry.register(
                            &name,
                            internal_config,
                            crate::protocols::openai::moonshot(),
                        )?,
                        "volcengine" => registry.register(
                            &name,
                            internal_config,
                            crate::protocols::openai::volcengine(),
                        )?,
                        "tencent" => registry.register(
                            &name,
                            internal_config,
                            crate::protocols::openai::tencent(),
                        )?,
                        "minimax" => registry.register(
                            &name,
                            internal_config,
                            crate::protocols::openai::minimax(),
                        )?,
                        "stepfun" => registry.register(
                            &name,
                            internal_config,
                            crate::protocols::openai::stepfun(),
                        )?,
                        "longcat" => registry.register(
                            &name,
                            internal_config,
                            crate::protocols::openai::longcat(),
                        )?,
                        _ => registry.register(
                            &name,
                            internal_config,
                            crate::protocols::openai::deepseek(),
                        )?, // default
                    }
                }
                "anthropic" => {
                    registry.register(
                        &name,
                        internal_config,
                        crate::protocols::anthropic::anthropic(),
                    )?;
                }
                _ => {
                    return Err(LlmConnectorError::ConfigError(format!(
                        "Unknown provider: {}",
                        name
                    )));
                }
            }
        }

        Ok(registry)
    }

    /// Register a provider with its configuration
    pub fn register<T>(
        &mut self,
        name: &str,
        config: ProviderConfig,
        adapter: T,
    ) -> Result<(), LlmConnectorError>
    where
        T: ProviderAdapter + 'static,
    {
        let provider = GenericProvider::new(config.clone(), adapter)?;
        self.providers.insert(name.to_string(), Box::new(provider));
        self.configs.insert(name.to_string(), config);
        Ok(())
    }

    /// Get a provider by name
    pub fn get_provider(&self, name: &str) -> Option<&dyn Provider> {
        self.providers.get(name).map(|p| p.as_ref())
    }

    /// Check if a provider is registered
    pub fn has_provider(&self, name: &str) -> bool {
        self.providers.contains_key(name)
    }

    /// Get all registered provider names
    pub fn provider_names(&self) -> Vec<&str> {
        self.providers.keys().map(|k| k.as_str()).collect()
    }

    /// Get provider configuration
    pub fn get_config(&self, name: &str) -> Option<&ProviderConfig> {
        self.configs.get(name)
    }

    /// Update provider configuration
    pub fn update_config(
        &mut self,
        name: &str,
        config: ProviderConfig,
    ) -> Result<(), LlmConnectorError> {
        if let Some(provider_config) = self.configs.get_mut(name) {
            *provider_config = config;
            Ok(())
        } else {
            Err(LlmConnectorError::ConfigError(format!(
                "Provider '{}' not found",
                name
            )))
        }
    }

    /// Remove a provider from the registry
    pub fn remove_provider(&mut self, name: &str) -> Option<Box<dyn Provider>> {
        self.configs.remove(name);
        self.providers.remove(name)
    }

    /// Get the number of registered providers
    pub fn len(&self) -> usize {
        self.providers.len()
    }

    /// Check if the registry is empty
    pub fn is_empty(&self) -> bool {
        self.providers.is_empty()
    }
}

impl Default for ProviderRegistry {
    fn default() -> Self {
        Self::new()
    }
}

/// Builder pattern for creating pre-configured provider registries
pub struct ProviderRegistryBuilder {
    registry: ProviderRegistry,
}

impl ProviderRegistryBuilder {
    pub fn new() -> Self {
        Self {
            registry: ProviderRegistry::new(),
        }
    }

    /// Add a provider to the registry
    pub fn with_provider<T>(
        mut self,
        name: &str,
        config: ProviderConfig,
        adapter: T,
    ) -> Result<Self, LlmConnectorError>
    where
        T: ProviderAdapter + 'static,
    {
        self.registry.register(name, config, adapter)?;
        Ok(self)
    }

    /// Build the final registry
    pub fn build(self) -> ProviderRegistry {
        self.registry
    }

    /// Build from a configuration
    pub fn from_config(mut self, config: RegistryConfig) -> Result<Self, LlmConnectorError> {
        for (name, entry) in config.providers {
            // Use the provider_config directly
            let internal_config = entry.config;

            // Register the provider based on name
            match name.as_str() {
                "aliyun" => {
                    self.registry.register(
                        &name,
                        internal_config,
                        crate::protocols::aliyun::aliyun(),
                    )?;
                }
                "deepseek" => {
                    self.registry.register(
                        &name,
                        internal_config,
                        crate::protocols::openai::deepseek(),
                    )?;
                }
                "zhipu" => {
                    self.registry.register(
                        &name,
                        internal_config,
                        crate::protocols::openai::zhipu(),
                    )?;
                }
                _ => {
                    return Err(LlmConnectorError::ConfigError(format!(
                        "Unknown provider: {}",
                        name
                    )));
                }
            }
        }

        Ok(self)
    }
}

impl Default for ProviderRegistryBuilder {
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::protocols::core::{ErrorMapper, ProviderAdapter};
    use crate::types::{ChatRequest, ChatResponse};
    use async_trait::async_trait;
    use serde::{Deserialize, Serialize};

    // Mock adapter for testing
    #[derive(Clone)]
    struct MockAdapter;

    #[async_trait]
    impl ProviderAdapter for MockAdapter {
        type RequestType = MockRequest;
        type ResponseType = MockResponse;
        #[cfg(feature = "streaming")]
        type StreamResponseType = MockResponse;
        type ErrorMapperType = MockErrorMapper;

        fn name(&self) -> &str {
            "mock"
        }

        fn supported_models(&self) -> Vec<String> {
            vec!["mock-model".to_string()]
        }

        fn endpoint_url(&self, _base_url: &Option<String>) -> String {
            "https://mock.api/chat".to_string()
        }

        fn build_request_data(&self, _request: &ChatRequest, _stream: bool) -> Self::RequestType {
            MockRequest {
                model: "mock-model".to_string(),
            }
        }

        fn parse_response_data(&self, _response: Self::ResponseType) -> ChatResponse {
            ChatResponse::default()
        }

        #[cfg(feature = "streaming")]
        fn parse_stream_response_data(
            &self,
            _response: Self::StreamResponseType,
        ) -> crate::types::StreamingResponse {
            crate::types::StreamingResponse::default()
        }
    }

    #[derive(Serialize)]
    struct MockRequest {
        model: String,
    }

    #[derive(Deserialize)]
    #[allow(dead_code)]
    struct MockResponse {
        id: String,
    }

    struct MockErrorMapper;

    impl ErrorMapper for MockErrorMapper {
        fn map_http_error(_status: u16, _body: serde_json::Value) -> LlmConnectorError {
            LlmConnectorError::ProviderError("mock error".to_string())
        }

        fn map_network_error(_error: reqwest::Error) -> LlmConnectorError {
            LlmConnectorError::NetworkError("mock network error".to_string())
        }

        fn is_retriable_error(_error: &LlmConnectorError) -> bool {
            false
        }
    }

    #[test]
    fn test_registry_creation() {
        let registry = ProviderRegistry::new();
        assert!(registry.is_empty());
        assert_eq!(registry.len(), 0);
    }

    #[test]
    fn test_provider_registration() {
        let mut registry = ProviderRegistry::new();
        let config = ProviderConfig::new("test-key").with_timeout_ms(5000);

        let result = registry.register("mock", config.clone(), MockAdapter);
        assert!(result.is_ok());
        assert_eq!(registry.len(), 1);
        assert!(registry.has_provider("mock"));
    }

    #[test]
    fn test_provider_retrieval() {
        let mut registry = ProviderRegistry::new();
        let config = ProviderConfig::new("test-key").with_timeout_ms(5000);

        registry
            .register("mock", config.clone(), MockAdapter)
            .unwrap();

        assert!(registry.get_provider("mock").is_some());
        assert!(registry.get_provider("nonexistent").is_none());
    }

    #[test]
    fn test_provider_removal() {
        let mut registry = ProviderRegistry::new();
        let config = ProviderConfig::new("test-key").with_timeout_ms(5000);

        registry
            .register("mock", config.clone(), MockAdapter)
            .unwrap();
        assert_eq!(registry.len(), 1);

        registry.remove_provider("mock");
        assert_eq!(registry.len(), 0);
        assert!(!registry.has_provider("mock"));
    }

    #[test]
    fn test_registry_builder() {
        let config = ProviderConfig::new("test-key").with_timeout_ms(5000);

        let registry = ProviderRegistryBuilder::new()
            .with_provider("mock", config, MockAdapter)
            .unwrap()
            .build();

        assert_eq!(registry.len(), 1);
        assert!(registry.has_provider("mock"));
    }
}