langfuse_client/models/
open_ai_completion_usage_schema.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/// OpenAiCompletionUsageSchema : OpenAI Usage schema from (Chat-)Completion APIs
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct OpenAiCompletionUsageSchema {
17    #[serde(rename = "prompt_tokens")]
18    pub prompt_tokens: i32,
19    #[serde(rename = "completion_tokens")]
20    pub completion_tokens: i32,
21    #[serde(rename = "total_tokens")]
22    pub total_tokens: i32,
23    #[serde(rename = "prompt_tokens_details", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
24    pub prompt_tokens_details: Option<Option<std::collections::HashMap<String, i32>>>,
25    #[serde(rename = "completion_tokens_details", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
26    pub completion_tokens_details: Option<Option<std::collections::HashMap<String, i32>>>,
27}
28
29impl OpenAiCompletionUsageSchema {
30    /// OpenAI Usage schema from (Chat-)Completion APIs
31    pub fn new(prompt_tokens: i32, completion_tokens: i32, total_tokens: i32) -> OpenAiCompletionUsageSchema {
32        OpenAiCompletionUsageSchema {
33            prompt_tokens,
34            completion_tokens,
35            total_tokens,
36            prompt_tokens_details: None,
37            completion_tokens_details: None,
38        }
39    }
40}
41