lmkit 0.1.0

Multi-provider AI API client (OpenAI, Anthropic, Google Gemini, Aliyun, Ollama, Zhipu; chat, embed incl. Gemini, rerank, image, audio stubs)
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
//! 共享 HTTP 客户端:JSON POST,默认 Bearer;[`HttpClient::post_json_with_headers`] 自定义请求头(如 Anthropic `x-api-key`);[`HttpClient::post_json_query`] 在 URL 上附加 query 且不带 Bearer(如 Google Gemini `key`)。
//!
//! SSE 流式响应见 [`HttpClient::post_bearer_sse`] 等。

use std::pin::Pin;
use std::time::Duration;

use futures::Stream;
use reqwest::Client;
use serde::{de::DeserializeOwned, Serialize};

use crate::error::{Error, Result};
use crate::sse::{SseByteStream, SseEvent};

/// `text/event-stream` 解析后的 SSE 事件流。
pub type SseEventStream = Pin<Box<dyn Stream<Item = Result<SseEvent>> + Send>>;

#[derive(Debug, Clone)]
pub struct HttpClient {
    inner: Client,
}

impl HttpClient {
    pub fn new(timeout: Duration) -> Result<Self> {
        let inner = Client::builder().timeout(timeout).build()?;
        Ok(Self { inner })
    }

    /// POST JSON,`Authorization: Bearer {token}`。非 2xx 时用 `map_err_body` 处理响应体文案。
    pub async fn post_bearer_json<Req, Resp, F>(
        &self,
        url: &str,
        bearer_token: &str,
        body: &Req,
        map_err_body: F,
    ) -> Result<Resp>
    where
        Req: Serialize + ?Sized,
        Resp: DeserializeOwned,
        F: FnOnce(String) -> String,
    {
        let response = self
            .inner
            .post(url)
            .header("Authorization", format!("Bearer {}", bearer_token))
            .header("Content-Type", "application/json")
            .json(body)
            .send()
            .await?;

        let status = response.status();
        let body_text = response.text().await?;

        if !status.is_success() {
            return Err(Error::Api {
                status: status.as_u16(),
                message: map_err_body(body_text),
            });
        }

        serde_json::from_str(&body_text).map_err(|e| Error::Parse(e.to_string()))
    }

    /// POST JSON,自定义请求头(不含 `Content-Type`,本方法会设置 `application/json`)。
    #[cfg(feature = "anthropic")]
    pub async fn post_json_with_headers<Req, Resp, F>(
        &self,
        url: &str,
        headers: &[(&str, &str)],
        body: &Req,
        map_err_body: F,
    ) -> Result<Resp>
    where
        Req: Serialize + ?Sized,
        Resp: DeserializeOwned,
        F: FnOnce(String) -> String,
    {
        let mut req = self
            .inner
            .post(url)
            .header("Content-Type", "application/json");
        for (name, value) in headers {
            req = req.header(*name, *value);
        }
        let response = req.json(body).send().await?;

        let status = response.status();
        let body_text = response.text().await?;

        if !status.is_success() {
            return Err(Error::Api {
                status: status.as_u16(),
                message: map_err_body(body_text),
            });
        }

        serde_json::from_str(&body_text).map_err(|e| Error::Parse(e.to_string()))
    }

    /// POST JSON,URL query 参数(如 `key`),无 `Authorization` 头;本方法会设置 `Content-Type: application/json`。
    #[cfg(feature = "google")]
    pub async fn post_json_query<Req, Resp, F>(
        &self,
        url: &str,
        query: &[(&str, &str)],
        body: &Req,
        map_err_body: F,
    ) -> Result<Resp>
    where
        Req: Serialize + ?Sized,
        Resp: DeserializeOwned,
        F: FnOnce(String) -> String,
    {
        let response = self
            .inner
            .post(url)
            .query(query)
            .header("Content-Type", "application/json")
            .json(body)
            .send()
            .await?;

        let status = response.status();
        let body_text = response.text().await?;

        if !status.is_success() {
            return Err(Error::Api {
                status: status.as_u16(),
                message: map_err_body(body_text),
            });
        }

        serde_json::from_str(&body_text).map_err(|e| Error::Parse(e.to_string()))
    }

    /// POST JSON + Bearer,成功时返回 SSE 事件流(`Accept: text/event-stream`)。
    pub async fn post_bearer_sse<Req, F>(
        &self,
        url: &str,
        bearer_token: &str,
        body: &Req,
        map_err_body: F,
    ) -> Result<SseEventStream>
    where
        Req: Serialize + ?Sized,
        F: FnOnce(String) -> String,
    {
        let response = self
            .inner
            .post(url)
            .header("Authorization", format!("Bearer {}", bearer_token))
            .header("Accept", "text/event-stream")
            .header("Content-Type", "application/json")
            .json(body)
            .send()
            .await?;
        into_sse_stream(response, map_err_body).await
    }

    /// POST JSON + 自定义头,成功时返回 SSE 事件流。
    #[cfg(feature = "anthropic")]
    pub async fn post_json_with_headers_sse<Req, F>(
        &self,
        url: &str,
        headers: &[(&str, &str)],
        body: &Req,
        map_err_body: F,
    ) -> Result<SseEventStream>
    where
        Req: Serialize + ?Sized,
        F: FnOnce(String) -> String,
    {
        let mut req = self
            .inner
            .post(url)
            .header("Accept", "text/event-stream")
            .header("Content-Type", "application/json");
        for (name, value) in headers {
            req = req.header(*name, *value);
        }
        let response = req.json(body).send().await?;
        into_sse_stream(response, map_err_body).await
    }

    /// POST JSON + URL query,成功时返回 SSE 事件流。
    #[cfg(feature = "google")]
    pub async fn post_json_query_sse<Req, F>(
        &self,
        url: &str,
        query: &[(&str, &str)],
        body: &Req,
        map_err_body: F,
    ) -> Result<SseEventStream>
    where
        Req: Serialize + ?Sized,
        F: FnOnce(String) -> String,
    {
        let response = self
            .inner
            .post(url)
            .query(query)
            .header("Accept", "text/event-stream")
            .header("Content-Type", "application/json")
            .json(body)
            .send()
            .await?;
        into_sse_stream(response, map_err_body).await
    }
}

async fn into_sse_stream<F>(response: reqwest::Response, map_err_body: F) -> Result<SseEventStream>
where
    F: FnOnce(String) -> String,
{
    let status = response.status();
    if !status.is_success() {
        let body_text = response.text().await?;
        return Err(Error::Api {
            status: status.as_u16(),
            message: map_err_body(body_text),
        });
    }
    Ok(Box::pin(SseByteStream::new(response.bytes_stream())))
}

#[cfg(test)]
mod tests {
    use super::*;
    use serde::{Deserialize, Serialize};
    use wiremock::matchers::{body_json, header, method, path, query_param};
    use wiremock::{Mock, MockServer, ResponseTemplate};

    #[derive(Serialize)]
    struct EchoReq {
        n: i32,
    }

    #[derive(Debug, Deserialize, PartialEq, Eq)]
    struct EchoResp {
        msg: String,
    }

    #[tokio::test]
    async fn post_bearer_json_success() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/echo"))
            .respond_with(
                ResponseTemplate::new(200).set_body_json(serde_json::json!({ "msg": "hi" })),
            )
            .mount(&server)
            .await;

        let client = HttpClient::new(Duration::from_secs(5)).unwrap();
        let url = format!("{}/echo", server.uri());
        let out: EchoResp = client
            .post_bearer_json(&url, "tok", &EchoReq { n: 1 }, |s| s)
            .await
            .unwrap();
        assert_eq!(out.msg, "hi");
    }

    #[tokio::test]
    async fn post_bearer_json_api_error_invokes_map_err_body() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/echo"))
            .respond_with(ResponseTemplate::new(422).set_body_string("upstream"))
            .mount(&server)
            .await;

        let client = HttpClient::new(Duration::from_secs(5)).unwrap();
        let url = format!("{}/echo", server.uri());
        let err = client
            .post_bearer_json::<EchoReq, EchoResp, _>(&url, "k", &EchoReq { n: 0 }, |s| {
                format!("wrapped:{s}")
            })
            .await
            .unwrap_err();

        match err {
            Error::Api { status, message } => {
                assert_eq!(status, 422);
                assert_eq!(message, "wrapped:upstream");
            }
            e => panic!("unexpected {e:?}"),
        }
    }

    #[tokio::test]
    async fn post_bearer_json_non_json_success_body_returns_parse() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/echo"))
            .respond_with(ResponseTemplate::new(200).set_body_string("not-json"))
            .mount(&server)
            .await;

        let client = HttpClient::new(Duration::from_secs(5)).unwrap();
        let url = format!("{}/echo", server.uri());
        let err = client
            .post_bearer_json::<EchoReq, EchoResp, _>(&url, "k", &EchoReq { n: 1 }, |s| s)
            .await
            .unwrap_err();

        assert!(matches!(err, Error::Parse(_)));
    }

    #[tokio::test]
    async fn post_bearer_json_wrong_shape_returns_parse() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/echo"))
            .respond_with(
                ResponseTemplate::new(200).set_body_json(serde_json::json!({ "wrong": true })),
            )
            .mount(&server)
            .await;

        let client = HttpClient::new(Duration::from_secs(5)).unwrap();
        let url = format!("{}/echo", server.uri());
        let err = client
            .post_bearer_json::<EchoReq, EchoResp, _>(&url, "k", &EchoReq { n: 1 }, |s| s)
            .await
            .unwrap_err();

        assert!(matches!(err, Error::Parse(_)));
    }

    #[tokio::test]
    async fn post_bearer_json_sends_bearer_and_json_content_type() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/token-check"))
            .and(header("Authorization", "Bearer secret-key"))
            .and(header("content-type", "application/json"))
            .and(body_json(serde_json::json!({ "n": 42 })))
            .respond_with(
                ResponseTemplate::new(200).set_body_json(serde_json::json!({ "msg": "ok" })),
            )
            .mount(&server)
            .await;

        let client = HttpClient::new(Duration::from_secs(5)).unwrap();
        let url = format!("{}/token-check", server.uri());
        client
            .post_bearer_json::<EchoReq, EchoResp, _>(&url, "secret-key", &EchoReq { n: 42 }, |s| s)
            .await
            .unwrap();
    }

    #[cfg(feature = "anthropic")]
    #[tokio::test]
    async fn post_json_with_headers_success_and_custom_headers() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/m"))
            .and(header("x-api-key", "secret"))
            .and(header("anthropic-version", "2023-06-01"))
            .and(header("content-type", "application/json"))
            .and(body_json(serde_json::json!({ "n": 7 })))
            .respond_with(
                ResponseTemplate::new(200).set_body_json(serde_json::json!({ "msg": "ok" })),
            )
            .mount(&server)
            .await;

        let client = HttpClient::new(Duration::from_secs(5)).unwrap();
        let url = format!("{}/m", server.uri());
        let headers = [("x-api-key", "secret"), ("anthropic-version", "2023-06-01")];
        let out: EchoResp = client
            .post_json_with_headers(&url, &headers, &EchoReq { n: 7 }, |s| s)
            .await
            .unwrap();
        assert_eq!(out.msg, "ok");
    }

    #[cfg(feature = "anthropic")]
    #[tokio::test]
    async fn post_json_with_headers_api_error() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/m"))
            .respond_with(ResponseTemplate::new(403).set_body_string("denied"))
            .mount(&server)
            .await;

        let client = HttpClient::new(Duration::from_secs(5)).unwrap();
        let url = format!("{}/m", server.uri());
        let err = client
            .post_json_with_headers::<EchoReq, EchoResp, _>(
                &url,
                &[("x-api-key", "k")],
                &EchoReq { n: 1 },
                |s| s,
            )
            .await
            .unwrap_err();

        match err {
            Error::Api { status, message } => {
                assert_eq!(status, 403);
                assert_eq!(message, "denied");
            }
            e => panic!("unexpected {e:?}"),
        }
    }

    #[cfg(feature = "google")]
    #[tokio::test]
    async fn post_json_query_success_and_sends_query() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/v1beta/models/m:generateContent"))
            .and(query_param("key", "secret-key"))
            .and(header("content-type", "application/json"))
            .and(body_json(serde_json::json!({ "n": 3 })))
            .respond_with(
                ResponseTemplate::new(200).set_body_json(serde_json::json!({ "msg": "ok" })),
            )
            .mount(&server)
            .await;

        let client = HttpClient::new(Duration::from_secs(5)).unwrap();
        let url = format!("{}/v1beta/models/m:generateContent", server.uri());
        let out: EchoResp = client
            .post_json_query(&url, &[("key", "secret-key")], &EchoReq { n: 3 }, |s| s)
            .await
            .unwrap();
        assert_eq!(out.msg, "ok");
    }

    #[cfg(feature = "google")]
    #[tokio::test]
    async fn post_json_query_api_error() {
        let server = MockServer::start().await;
        Mock::given(method("POST"))
            .and(path("/q"))
            .respond_with(ResponseTemplate::new(400).set_body_string("bad"))
            .mount(&server)
            .await;

        let client = HttpClient::new(Duration::from_secs(5)).unwrap();
        let url = format!("{}/q", server.uri());
        let err = client
            .post_json_query::<EchoReq, EchoResp, _>(
                &url,
                &[("key", "k")],
                &EchoReq { n: 1 },
                |s| s,
            )
            .await
            .unwrap_err();

        match err {
            Error::Api { status, message } => {
                assert_eq!(status, 400);
                assert_eq!(message, "bad");
            }
            e => panic!("unexpected {e:?}"),
        }
    }
}