langfuse_client_base/models/
open_ai_usage.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
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// OpenAiUsage : Usage interface of OpenAI for improved compatibility.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
16pub struct OpenAiUsage {
17    #[serde(
18        rename = "promptTokens",
19        default,
20        with = "::serde_with::rust::double_option",
21        skip_serializing_if = "Option::is_none"
22    )]
23    pub prompt_tokens: Option<Option<i32>>,
24    #[serde(
25        rename = "completionTokens",
26        default,
27        with = "::serde_with::rust::double_option",
28        skip_serializing_if = "Option::is_none"
29    )]
30    pub completion_tokens: Option<Option<i32>>,
31    #[serde(
32        rename = "totalTokens",
33        default,
34        with = "::serde_with::rust::double_option",
35        skip_serializing_if = "Option::is_none"
36    )]
37    pub total_tokens: Option<Option<i32>>,
38}
39
40impl OpenAiUsage {
41    /// Usage interface of OpenAI for improved compatibility.
42    pub fn new() -> OpenAiUsage {
43        OpenAiUsage {
44            prompt_tokens: None,
45            completion_tokens: None,
46            total_tokens: None,
47        }
48    }
49}