langfuse_client/apis/
dataset_run_items_api.rs

1/*
2 * langfuse
3 *
4 * ## Authentication  Authenticate with the API using [Basic Auth](https://en.wikipedia.org/wiki/Basic_access_authentication), get API keys in the project settings:  - username: Langfuse Public Key - password: Langfuse Secret Key  ## Exports  - OpenAPI spec: https://cloud.langfuse.com/generated/api/openapi.yml - Postman collection: https://cloud.langfuse.com/generated/postman/collection.json
5 *
6 * The version of the OpenAPI document: 
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 [`dataset_run_items_create`]
19#[derive(Debug, Clone, Serialize, Deserialize)]
20#[serde(untagged)]
21pub enum DatasetRunItemsCreateError {
22    Status400(serde_json::Value),
23    Status401(serde_json::Value),
24    Status403(serde_json::Value),
25    Status404(serde_json::Value),
26    Status405(serde_json::Value),
27    UnknownValue(serde_json::Value),
28}
29
30
31/// Create a dataset run item
32pub async fn dataset_run_items_create(configuration: &configuration::Configuration, create_dataset_run_item_request: models::CreateDatasetRunItemRequest) -> Result<models::DatasetRunItem, Error<DatasetRunItemsCreateError>> {
33    // add a prefix to parameters to efficiently prevent name collisions
34    let p_create_dataset_run_item_request = create_dataset_run_item_request;
35
36    let uri_str = format!("{}/api/public/dataset-run-items", configuration.base_path);
37    let mut req_builder = configuration.client.request(reqwest::Method::POST, &uri_str);
38
39    if let Some(ref user_agent) = configuration.user_agent {
40        req_builder = req_builder.header(reqwest::header::USER_AGENT, user_agent.clone());
41    }
42    if let Some(ref auth_conf) = configuration.basic_auth {
43        req_builder = req_builder.basic_auth(auth_conf.0.to_owned(), auth_conf.1.to_owned());
44    };
45    req_builder = req_builder.json(&p_create_dataset_run_item_request);
46
47    let req = req_builder.build()?;
48    let resp = configuration.client.execute(req).await?;
49
50    let status = resp.status();
51    let content_type = resp
52        .headers()
53        .get("content-type")
54        .and_then(|v| v.to_str().ok())
55        .unwrap_or("application/octet-stream");
56    let content_type = super::ContentType::from(content_type);
57
58    if !status.is_client_error() && !status.is_server_error() {
59        let content = resp.text().await?;
60        match content_type {
61            ContentType::Json => serde_json::from_str(&content).map_err(Error::from),
62            ContentType::Text => return Err(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `models::DatasetRunItem`"))),
63            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::DatasetRunItem`")))),
64        }
65    } else {
66        let content = resp.text().await?;
67        let entity: Option<DatasetRunItemsCreateError> = serde_json::from_str(&content).ok();
68        Err(Error::ResponseError(ResponseContent { status, content, entity }))
69    }
70}
71