langfuse_client_base/models/
prompt.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, Debug, PartialEq, Serialize, Deserialize)]
15#[serde(untagged)]
16pub enum Prompt {
17    PromptOneOf(Box<models::PromptOneOf>),
18    PromptOneOf1(Box<models::PromptOneOf1>),
19}
20
21impl Default for Prompt {
22    fn default() -> Self {
23        Self::PromptOneOf(Default::default())
24    }
25}
26///
27#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
28pub enum Type {
29    #[serde(rename = "chat")]
30    Chat,
31    #[serde(rename = "text")]
32    Text,
33}
34
35impl Default for Type {
36    fn default() -> Type {
37        Self::Chat
38    }
39}