ai-lib 0.4.0

A unified AI SDK for Rust providing a single interface for multiple AI providers with hybrid architecture
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
use super::error::TransportError;
use async_trait::async_trait;
use backoff::{future::retry, ExponentialBackoff};
use reqwest::{Client, Method, Proxy, Response};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::env;
use std::time::Duration;

/// HTTP transport client abstraction, defining common HTTP operation interface
///
/// HTTP transport client abstraction defining generic HTTP operation interface
///
/// This trait defines the generic interface for all HTTP operations,
/// allowing the adapter layer to avoid direct interaction with reqwest
#[async_trait]
pub trait HttpClient: Send + Sync {
    /// Send HTTP request
    async fn request<T, R>(
        &self,
        method: Method,
        url: &str,
        headers: Option<HashMap<String, String>>,
        body: Option<&T>,
    ) -> Result<R, TransportError>
    where
        T: Serialize + Send + Sync,
        R: for<'de> Deserialize<'de>;

    /// Send HTTP request with retry
    async fn request_with_retry<T, R>(
        &self,
        method: Method,
        url: &str,
        headers: Option<HashMap<String, String>>,
        body: Option<&T>,
        _max_retries: u32,
    ) -> Result<R, TransportError>
    where
        T: Serialize + Send + Sync + Clone,
        R: for<'de> Deserialize<'de>;

    /// Send GET request
    async fn get<R>(
        &self,
        url: &str,
        headers: Option<HashMap<String, String>>,
    ) -> Result<R, TransportError>
    where
        R: for<'de> Deserialize<'de>,
    {
        self.request(Method::GET, url, headers, None::<&()>).await
    }

    /// Send POST request
    async fn post<T, R>(
        &self,
        url: &str,
        headers: Option<HashMap<String, String>>,
        body: &T,
    ) -> Result<R, TransportError>
    where
        T: Serialize + Send + Sync,
        R: for<'de> Deserialize<'de>,
    {
        self.request(Method::POST, url, headers, Some(body)).await
    }

    /// Send PUT request
    async fn put<T, R>(
        &self,
        url: &str,
        headers: Option<HashMap<String, String>>,
        body: &T,
    ) -> Result<R, TransportError>
    where
        T: Serialize + Send + Sync,
        R: for<'de> Deserialize<'de>,
    {
        self.request(Method::PUT, url, headers, Some(body)).await
    }
}

/// Reqwest-based HTTP transport implementation, encapsulating all HTTP details
///
/// HTTP transport implementation based on reqwest, encapsulating all HTTP details
///
/// This is the concrete implementation of the HttpClient trait, encapsulating all HTTP details
pub struct HttpTransport {
    client: Client,
    timeout: Duration,
}

/// Transport configuration for constructing a reqwest Client
pub struct HttpTransportConfig {
    pub timeout: Duration,
    pub proxy: Option<String>,
    /// Maximum idle connections per host (maps to reqwest::ClientBuilder::pool_max_idle_per_host)
    pub pool_max_idle_per_host: Option<usize>,
    /// Idle timeout for pooled connections (maps to reqwest::ClientBuilder::pool_idle_timeout)
    pub pool_idle_timeout: Option<Duration>,
}

impl HttpTransport {
    /// Create new HTTP transport instance
    ///
    /// Automatically detects AI_PROXY_URL environment variable for proxy configuration
    ///
    /// Note: This method will always check for AI_PROXY_URL environment variable.
    /// If you want to avoid automatic proxy detection, use `new_without_proxy()` instead.
    pub fn new() -> Self {
        // Timeout: default 30s; support AI_HTTP_TIMEOUT_SECS and fallback AI_TIMEOUT_SECS
        let timeout_secs = env::var("AI_HTTP_TIMEOUT_SECS")
            .ok()
            .and_then(|s| s.parse::<u64>().ok())
            .or_else(|| {
                env::var("AI_TIMEOUT_SECS")
                    .ok()
                    .and_then(|s| s.parse::<u64>().ok())
            })
            .unwrap_or(30);
        Self::with_timeout(Duration::from_secs(timeout_secs))
    }

    /// Create new HTTP transport instance without automatic proxy detection
    ///
    /// This method creates a transport instance without checking AI_PROXY_URL environment variable.
    /// Use this when you want explicit control over proxy configuration.
    pub fn new_without_proxy() -> Self {
        let timeout_secs = env::var("AI_HTTP_TIMEOUT_SECS")
            .ok()
            .and_then(|s| s.parse::<u64>().ok())
            .or_else(|| {
                env::var("AI_TIMEOUT_SECS")
                    .ok()
                    .and_then(|s| s.parse::<u64>().ok())
            })
            .unwrap_or(30);
        Self::with_timeout_without_proxy(Duration::from_secs(timeout_secs))
    }

    /// Create HTTP transport instance with timeout
    ///
    /// Automatically detects AI_PROXY_URL environment variable for proxy configuration
    pub fn with_timeout(timeout: Duration) -> Self {
        let mut client_builder = Client::builder().timeout(timeout);

        // Optional: connection pool tuning via environment variables for OSS defaults
        if let Ok(v) = env::var("AI_HTTP_POOL_MAX_IDLE_PER_HOST") {
            if let Ok(n) = v.parse::<usize>() {
                client_builder = client_builder.pool_max_idle_per_host(n);
            }
        }
        if let Ok(v) = env::var("AI_HTTP_POOL_IDLE_TIMEOUT_MS") {
            if let Ok(ms) = v.parse::<u64>() {
                client_builder = client_builder.pool_idle_timeout(Duration::from_millis(ms));
            }
        }

        // Check proxy configuration
        if let Ok(proxy_url) = env::var("AI_PROXY_URL") {
            match Proxy::all(&proxy_url) {
                Ok(proxy) => {
                    client_builder = client_builder.proxy(proxy);
                }
                Err(_) => {
                    // Silently ignore invalid proxy URL in production
                }
            }
        }

        let client = client_builder
            .build()
            .expect("Failed to create HTTP client");

        Self { client, timeout }
    }

    /// Create HTTP transport instance with timeout without automatic proxy detection
    ///
    /// This method creates a transport instance with timeout but without checking AI_PROXY_URL environment variable.
    pub fn with_timeout_without_proxy(timeout: Duration) -> Self {
        let mut client_builder = Client::builder().timeout(timeout);

        // Optional: connection pool tuning via environment variables for OSS defaults
        if let Ok(v) = env::var("AI_HTTP_POOL_MAX_IDLE_PER_HOST") {
            if let Ok(n) = v.parse::<usize>() {
                client_builder = client_builder.pool_max_idle_per_host(n);
            }
        }
        if let Ok(v) = env::var("AI_HTTP_POOL_IDLE_TIMEOUT_MS") {
            if let Ok(ms) = v.parse::<u64>() {
                client_builder = client_builder.pool_idle_timeout(Duration::from_millis(ms));
            }
        }

        let client = client_builder
            .build()
            .expect("Failed to create HTTP client");

        Self { client, timeout }
    }

    /// Create an instance from an existing reqwest::Client (injected)
    pub fn with_client(client: Client, timeout: Duration) -> Self {
        Self { client, timeout }
    }

    /// Convenience alias that makes the intent explicit: create from a pre-built reqwest::Client.
    ///
    /// This is a small, descriptive wrapper around `with_client` that callers may find more
    /// discoverable when constructing transports from an external `reqwest::Client`.
    pub fn with_reqwest_client(client: Client, timeout: Duration) -> Self {
        Self::with_client(client, timeout)
    }

    /// Create instance using HttpTransportConfig
    pub fn new_with_config(config: HttpTransportConfig) -> Result<Self, TransportError> {
        let mut client_builder = Client::builder().timeout(config.timeout);

        // Apply pool tuning if provided
        if let Some(max_idle) = config.pool_max_idle_per_host {
            client_builder = client_builder.pool_max_idle_per_host(max_idle);
        }
        if let Some(idle_timeout) = config.pool_idle_timeout {
            client_builder = client_builder.pool_idle_timeout(idle_timeout);
        }

        if let Some(proxy_url) = config.proxy {
            if let Ok(proxy) = Proxy::all(&proxy_url) {
                client_builder = client_builder.proxy(proxy);
            }
        }

        let client = client_builder
            .build()
            .map_err(|e| TransportError::HttpError(e.to_string()))?;
        Ok(Self {
            client,
            timeout: config.timeout,
        })
    }

    /// Create HTTP transport instance with custom proxy
    pub fn with_proxy(timeout: Duration, proxy_url: Option<&str>) -> Result<Self, TransportError> {
        let mut client_builder = Client::builder().timeout(timeout);

        if let Some(url) = proxy_url {
            let proxy = Proxy::all(url)
                .map_err(|e| TransportError::InvalidUrl(format!("Invalid proxy URL: {}", e)))?;
            client_builder = client_builder.proxy(proxy);
        }

        let client = client_builder
            .build()
            .map_err(|e| TransportError::HttpError(e.to_string()))?;

        Ok(Self { client, timeout })
    }

    /// Get current timeout setting
    pub fn timeout(&self) -> Duration {
        self.timeout
    }

    /// Execute actual HTTP request
    async fn execute_request<T, R>(
        &self,
        method: Method,
        url: &str,
        headers: Option<HashMap<String, String>>,
        body: Option<&T>,
    ) -> Result<R, TransportError>
    where
        T: Serialize + Send + Sync,
        R: for<'de> Deserialize<'de>,
    {
        let mut request_builder = self.client.request(method, url);

        // Add headers
        if let Some(headers) = headers {
            for (key, value) in headers {
                request_builder = request_builder.header(key, value);
            }
        }

        // Add JSON body using reqwest's json() for correct serialization and headers
        if let Some(body) = body {
            request_builder = request_builder.json(body);
        }

        // Send request
        let response = request_builder.send().await?;

        // Handle response
        Self::handle_response(response).await
    }

    /// Determine if error is retryable
    fn is_retryable_error(&self, error: &TransportError) -> bool {
        match error {
            TransportError::HttpError(err_msg) => {
                err_msg.contains("timeout") || err_msg.contains("connection")
            }
            TransportError::ClientError { status, .. } => {
                *status == 429 || *status == 502 || *status == 503 || *status == 504
            }
            TransportError::ServerError { .. } => true,
            _ => false,
        }
    }

    /// Handle HTTP response with unified error handling
    async fn handle_response<R>(response: Response) -> Result<R, TransportError>
    where
        R: for<'de> Deserialize<'de>,
    {
        let status = response.status();

        if status.is_success() {
            let json_text = response.text().await?;
            let result: R = serde_json::from_str(&json_text)?;
            Ok(result)
        } else {
            let error_text = response.text().await.unwrap_or_default();
            Err(TransportError::from_status(status.as_u16(), error_text))
        }
    }
}

#[async_trait]
impl HttpClient for HttpTransport {
    async fn request<T, R>(
        &self,
        method: Method,
        url: &str,
        headers: Option<HashMap<String, String>>,
        body: Option<&T>,
    ) -> Result<R, TransportError>
    where
        T: Serialize + Send + Sync,
        R: for<'de> Deserialize<'de>,
    {
        self.execute_request(method, url, headers, body).await
    }

    async fn request_with_retry<T, R>(
        &self,
        method: Method,
        url: &str,
        headers: Option<HashMap<String, String>>,
        body: Option<&T>,
        _max_retries: u32,
    ) -> Result<R, TransportError>
    where
        T: Serialize + Send + Sync + Clone,
        R: for<'de> Deserialize<'de>,
    {
        let backoff = ExponentialBackoff {
            max_elapsed_time: Some(Duration::from_secs(60)),
            max_interval: Duration::from_secs(10),
            ..Default::default()
        };

        let headers_clone = headers.clone();
        let body_clone = body.cloned();
        let url_clone = url.to_string();

        retry(backoff, || async {
            match self
                .execute_request(
                    method.clone(),
                    &url_clone,
                    headers_clone.clone(),
                    body_clone.as_ref(),
                )
                .await
            {
                Ok(result) => Ok(result),
                Err(e) => {
                    if self.is_retryable_error(&e) {
                        Err(backoff::Error::transient(e))
                    } else {
                        Err(backoff::Error::permanent(e))
                    }
                }
            }
        })
        .await
    }
}

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

// Object-safe wrapper implementation to allow dynamic dispatch for transports
pub struct HttpTransportBoxed {
    inner: HttpTransport,
}

impl HttpTransportBoxed {
    pub fn new(inner: HttpTransport) -> Self {
        Self { inner }
    }
}

use crate::transport::dyn_transport::{DynHttpTransport, DynHttpTransportRef};
use bytes::Bytes;
use futures::{Stream, StreamExt};
use std::pin::Pin;
use std::sync::Arc;

impl DynHttpTransport for HttpTransportBoxed {
    fn get_json<'a>(
        &'a self,
        url: &'a str,
        headers: Option<HashMap<String, String>>,
    ) -> futures::future::BoxFuture<'a, Result<serde_json::Value, crate::types::AiLibError>> {
        Box::pin(async move {
            let res: Result<serde_json::Value, TransportError> = self.inner.get(url, headers).await;
            match res {
                Ok(v) => Ok(v),
                Err(e) => Err(map_transport_error_to_ailib(e)),
            }
        })
    }

    fn post_json<'a>(
        &'a self,
        url: &'a str,
        headers: Option<HashMap<String, String>>,
        body: serde_json::Value,
    ) -> futures::future::BoxFuture<'a, Result<serde_json::Value, crate::types::AiLibError>> {
        Box::pin(async move {
            let res: Result<serde_json::Value, TransportError> =
                self.inner.post(url, headers, &body).await;
            match res {
                Ok(v) => Ok(v),
                Err(e) => Err(map_transport_error_to_ailib(e)),
            }
        })
    }

    fn post_stream<'a>(
        &'a self,
        _url: &'a str,
        _headers: Option<HashMap<String, String>>,
        _body: serde_json::Value,
    ) -> futures::future::BoxFuture<
        'a,
        Result<
            Pin<Box<dyn Stream<Item = Result<Bytes, crate::types::AiLibError>> + Send>>,
            crate::types::AiLibError,
        >,
    > {
        Box::pin(async move {
            // Build request
            let mut req = self.inner.client.post(_url).json(&_body);
            // Apply headers
            if let Some(h) = _headers {
                for (k, v) in h.into_iter() {
                    req = req.header(k, v);
                }
            }
            // Ensure Accept header for event-streams
            req = req.header("Accept", "text/event-stream");

            let resp = req.send().await.map_err(|e| {
                if e.is_timeout() {
                    crate::types::AiLibError::TimeoutError(format!("Stream request timeout: {}", e))
                } else {
                    crate::types::AiLibError::NetworkError(format!("Stream request failed: {}", e))
                }
            })?;
            if !resp.status().is_success() {
                let status = resp.status();
                let text = resp.text().await.unwrap_or_default();
                return Err(map_status_to_ailib(status.as_u16(), text));
            }

            let byte_stream = resp.bytes_stream().map(|res| match res {
                Ok(b) => Ok(b),
                Err(e) => {
                    if e.is_timeout() {
                        Err(crate::types::AiLibError::TimeoutError(format!(
                            "Stream chunk timeout: {}",
                            e
                        )))
                    } else {
                        Err(crate::types::AiLibError::NetworkError(format!(
                            "Stream chunk error: {}",
                            e
                        )))
                    }
                }
            });

            let boxed_stream: Pin<
                Box<dyn Stream<Item = Result<Bytes, crate::types::AiLibError>> + Send>,
            > = Box::pin(byte_stream);
            Ok(boxed_stream)
        })
    }

    fn upload_multipart<'a>(
        &'a self,
        url: &'a str,
        headers: Option<HashMap<String, String>>,
        field_name: &'a str,
        file_name: &'a str,
        bytes: Vec<u8>,
    ) -> Pin<
        Box<
            dyn futures::Future<Output = Result<serde_json::Value, crate::types::AiLibError>>
                + Send
                + 'a,
        >,
    > {
        Box::pin(async move {
            // Build multipart form
            let part = reqwest::multipart::Part::bytes(bytes).file_name(file_name.to_string());
            let form = reqwest::multipart::Form::new().part(field_name.to_string(), part);

            let mut req = self.inner.client.post(url).multipart(form);
            if let Some(h) = headers {
                for (k, v) in h.into_iter() {
                    req = req.header(k, v);
                }
            }

            let resp = req.send().await.map_err(|e| {
                if e.is_timeout() {
                    crate::types::AiLibError::TimeoutError(format!("upload request timeout: {}", e))
                } else {
                    crate::types::AiLibError::NetworkError(format!("upload request failed: {}", e))
                }
            })?;
            if !resp.status().is_success() {
                let status = resp.status();
                let text = resp.text().await.unwrap_or_default();
                return Err(map_status_to_ailib(status.as_u16(), text));
            }
            let j: serde_json::Value = resp.json().await.map_err(|e| {
                crate::types::AiLibError::DeserializationError(format!(
                    "parse upload response: {}",
                    e
                ))
            })?;
            Ok(j)
        })
    }
}

impl HttpTransport {
    /// Produce an Arc-wrapped object-safe transport reference
    pub fn boxed(self) -> DynHttpTransportRef {
        Arc::new(HttpTransportBoxed::new(self))
    }
}

// Map TransportError and HTTP status codes to structured AiLibError variants
fn map_transport_error_to_ailib(e: TransportError) -> crate::types::AiLibError {
    use crate::types::AiLibError;
    match e {
        TransportError::AuthenticationError(msg) => AiLibError::AuthenticationError(msg),
        TransportError::RateLimitExceeded => {
            AiLibError::RateLimitExceeded("rate limited".to_string())
        }
        TransportError::Timeout(msg) => AiLibError::TimeoutError(msg),
        TransportError::ServerError { status, message } => {
            // Treat 5xx as network/retryable provider outage
            AiLibError::NetworkError(format!("server {}: {}", status, message))
        }
        TransportError::ClientError { status, message } => match status {
            401 | 403 => AiLibError::AuthenticationError(message),
            408 => AiLibError::TimeoutError(message),
            409 | 425 | 429 => AiLibError::RateLimitExceeded(message),
            _ => AiLibError::InvalidRequest(format!("client {}: {}", status, message)),
        },
        TransportError::HttpError(msg) => {
            // Heuristic mapping
            if msg.contains("timeout") {
                AiLibError::TimeoutError(msg)
            } else {
                AiLibError::NetworkError(msg)
            }
        }
        TransportError::JsonError(msg) => AiLibError::DeserializationError(msg),
        TransportError::InvalidUrl(msg) => AiLibError::ConfigurationError(msg),
    }
}

fn map_status_to_ailib(status: u16, body: String) -> crate::types::AiLibError {
    use crate::types::AiLibError;
    match status {
        401 | 403 => AiLibError::AuthenticationError(body),
        408 => AiLibError::TimeoutError(body),
        409 | 425 | 429 => AiLibError::RateLimitExceeded(body),
        500..=599 => AiLibError::NetworkError(format!("server {}: {}", status, body)),
        400 => AiLibError::InvalidRequest(body),
        _ => AiLibError::ProviderError(format!("http {}: {}", status, body)),
    }
}