langfuse_rs/models/
model_usage_unit.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/// ModelUsageUnit : Unit of usage in Langfuse
15/// Unit of usage in Langfuse
16#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
17pub enum ModelUsageUnit {
18	#[serde(rename = "CHARACTERS")]
19	Characters,
20	#[serde(rename = "TOKENS")]
21	Tokens,
22	#[serde(rename = "MILLISECONDS")]
23	Milliseconds,
24	#[serde(rename = "SECONDS")]
25	Seconds,
26	#[serde(rename = "IMAGES")]
27	Images,
28	#[serde(rename = "REQUESTS")]
29	Requests,
30}
31
32impl std::fmt::Display for ModelUsageUnit {
33	fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
34		match self {
35			Self::Characters => write!(f, "CHARACTERS"),
36			Self::Tokens => write!(f, "TOKENS"),
37			Self::Milliseconds => write!(f, "MILLISECONDS"),
38			Self::Seconds => write!(f, "SECONDS"),
39			Self::Images => write!(f, "IMAGES"),
40			Self::Requests => write!(f, "REQUESTS"),
41		}
42	}
43}
44
45impl Default for ModelUsageUnit {
46	fn default() -> ModelUsageUnit {
47		Self::Characters
48	}
49}