langfuse_rs/models/
create_text_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 - 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#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct CreateTextPromptRequest {
16	#[serde(rename = "name")]
17	pub name: String,
18	#[serde(rename = "prompt")]
19	pub prompt: String,
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	/// List of deployment labels of this prompt version.
28	#[serde(
29		rename = "labels",
30		default,
31		with = "::serde_with::rust::double_option",
32		skip_serializing_if = "Option::is_none"
33	)]
34	pub labels: Option<Option<Vec<String>>>,
35	/// List of tags to apply to all versions of this prompt.
36	#[serde(
37		rename = "tags",
38		default,
39		with = "::serde_with::rust::double_option",
40		skip_serializing_if = "Option::is_none"
41	)]
42	pub tags: Option<Option<Vec<String>>>,
43}
44
45impl CreateTextPromptRequest {
46	pub fn new(name: String, prompt: String) -> CreateTextPromptRequest {
47		CreateTextPromptRequest {
48			name,
49			prompt,
50			config: None,
51			labels: None,
52			tags: None,
53		}
54	}
55}