Skip to main content

langfuse_client_base/models/
create_chat_prompt_request.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 CreateChatPromptRequest {
16    #[serde(rename = "name")]
17    pub name: String,
18    #[serde(rename = "prompt")]
19    pub prompt: Vec<models::ChatMessageWithPlaceholders>,
20    #[serde(
21        rename = "config",
22        default,
23        with = "::serde_with::rust::double_option",
24        skip_serializing_if = "Option::is_none"
25    )]
26    pub config: Option<Option<serde_json::Value>>,
27    #[serde(rename = "type")]
28    pub r#type: models::CreateChatPromptType,
29    /// List of deployment labels of this prompt version.
30    #[serde(
31        rename = "labels",
32        default,
33        with = "::serde_with::rust::double_option",
34        skip_serializing_if = "Option::is_none"
35    )]
36    pub labels: Option<Option<Vec<String>>>,
37    /// List of tags to apply to all versions of this prompt.
38    #[serde(
39        rename = "tags",
40        default,
41        with = "::serde_with::rust::double_option",
42        skip_serializing_if = "Option::is_none"
43    )]
44    pub tags: Option<Option<Vec<String>>>,
45    /// Commit message for this prompt version.
46    #[serde(
47        rename = "commitMessage",
48        default,
49        with = "::serde_with::rust::double_option",
50        skip_serializing_if = "Option::is_none"
51    )]
52    pub commit_message: Option<Option<String>>,
53}
54
55impl CreateChatPromptRequest {
56    pub fn new(
57        name: String,
58        prompt: Vec<models::ChatMessageWithPlaceholders>,
59        r#type: models::CreateChatPromptType,
60    ) -> CreateChatPromptRequest {
61        CreateChatPromptRequest {
62            name,
63            prompt,
64            config: None,
65            r#type,
66            labels: None,
67            tags: None,
68            commit_message: None,
69        }
70    }
71}