Skip to main content

langfuse_client_base/models/
prompt_one_of.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
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#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
15pub struct PromptOneOf {
16    #[serde(rename = "name")]
17    pub name: String,
18    #[serde(rename = "version")]
19    pub version: i32,
20    #[serde(rename = "config", deserialize_with = "Option::deserialize")]
21    pub config: Option<serde_json::Value>,
22    /// List of deployment labels of this prompt version.
23    #[serde(rename = "labels")]
24    pub labels: Vec<String>,
25    /// List of tags. Used to filter via UI and API. The same across versions of a prompt.
26    #[serde(rename = "tags")]
27    pub tags: Vec<String>,
28    /// Commit message for this prompt version.
29    #[serde(
30        rename = "commitMessage",
31        default,
32        with = "::serde_with::rust::double_option",
33        skip_serializing_if = "Option::is_none"
34    )]
35    pub commit_message: Option<Option<String>>,
36    /// The dependency resolution graph for the current prompt. Null if the prompt has no dependencies or if `resolve=false` was used.
37    #[serde(
38        rename = "resolutionGraph",
39        default,
40        with = "::serde_with::rust::double_option",
41        skip_serializing_if = "Option::is_none"
42    )]
43    pub resolution_graph: Option<Option<std::collections::HashMap<String, serde_json::Value>>>,
44    #[serde(rename = "prompt")]
45    pub prompt: Vec<models::ChatMessageWithPlaceholders>,
46    #[serde(rename = "type")]
47    pub r#type: Type,
48}
49
50impl PromptOneOf {
51    pub fn new(
52        name: String,
53        version: i32,
54        config: Option<serde_json::Value>,
55        labels: Vec<String>,
56        tags: Vec<String>,
57        prompt: Vec<models::ChatMessageWithPlaceholders>,
58        r#type: Type,
59    ) -> PromptOneOf {
60        PromptOneOf {
61            name,
62            version,
63            config,
64            labels,
65            tags,
66            commit_message: None,
67            resolution_graph: None,
68            prompt,
69            r#type,
70        }
71    }
72}
73///
74#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
75pub enum Type {
76    #[serde(rename = "chat")]
77    Chat,
78}
79
80impl Default for Type {
81    fn default() -> Type {
82        Self::Chat
83    }
84}