Skip to main content

mistral_openapi_client/apis/
embeddings_api.rs

1/*
2 * Mistral AI API
3 *
4 * Our Chat Completion and Embeddings APIs specification. Create your account on [La Plateforme](https://console.mistral.ai) to get access and read the [docs](https://docs.mistral.ai) to learn how to use it.
5 *
6 * The version of the OpenAPI document: 1.0.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12use reqwest;
13use serde::{Deserialize, Serialize, de::Error as _};
14use crate::{apis::ResponseContent, models};
15use super::{Error, configuration, ContentType};
16
17
18/// struct for typed errors of method [`embeddings_v1_embeddings_post`]
19#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum EmbeddingsV1EmbeddingsPostError {
22    Status422(models::HttpValidationError),
23    UnknownValue(serde_json::Value),
24}
25
26
27/// Embeddings
28pub async fn embeddings_v1_embeddings_post(configuration: &configuration::Configuration, embedding_request: models::EmbeddingRequest) -> Result<models::EmbeddingResponse, Error<EmbeddingsV1EmbeddingsPostError>> {
29    // add a prefix to parameters to efficiently prevent name collisions
30    let p_body_embedding_request = embedding_request;
31
32    let uri_str = format!("{}/v1/embeddings", configuration.base_path);
33    let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
34
35    if let Some(ref user_agent) = configuration.user_agent {
36        req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
37    }
38    if let Some(ref token) = configuration.bearer_access_token {
39        req_builder = req_builder.bearer_auth(token.to_owned());
40    };
41    req_builder = req_builder.json(&p_body_embedding_request);
42
43    let req = req_builder.build()?;
44    let resp = configuration.client.execute(req).await?;
45
46    let status = resp.status();
47    let content_type = resp
48        .headers()
49        .get("content-type")
50        .and_then(|v| v.to_str().ok())
51        .unwrap_or("application/octet-stream");
52    let content_type = super::ContentType::from(content_type);
53
54    if !status.is_client_error() && !status.is_server_error() {
55        let content = resp.text().await?;
56        match content_type {
57            ContentType::Json => serde_json::from_str(&content).map_err(Error::from),
58            ContentType::Text => return Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `models::EmbeddingResponse`"))),
59            ContentType::Unsupported(unknown_type) => return Err(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `models::EmbeddingResponse`")))),
60        }
61    } else {
62        let content = resp.text().await?;
63        let entity: Option<EmbeddingsV1EmbeddingsPostError> = serde_json::from_str(&content).ok();
64        Err(Error::ResponseError(ResponseContent { status, content, entity }))
65    }
66}
67