1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* langfuse
*
* ## 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
*
* The version of the OpenAPI document:
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// LlmConnection : LLM API connection configuration (secrets excluded)
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct LlmConnection {
#[serde(rename = "id")]
pub id: String,
/// Provider name (e.g., 'openai', 'my-gateway'). Must be unique in project, used for upserting.
#[serde(rename = "provider")]
pub provider: String,
/// The adapter used to interface with the LLM
#[serde(rename = "adapter")]
pub adapter: String,
/// Masked version of the secret key for display purposes
#[serde(rename = "displaySecretKey")]
pub display_secret_key: String,
/// Custom base URL for the LLM API
#[serde(
rename = "baseURL",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub base_url: Option<Option<String>>,
/// List of custom model names available for this connection
#[serde(rename = "customModels")]
pub custom_models: Vec<String>,
/// Whether to include default models for this adapter
#[serde(rename = "withDefaultModels")]
pub with_default_models: bool,
/// Keys of extra headers sent with requests (values excluded for security)
#[serde(rename = "extraHeaderKeys")]
pub extra_header_keys: Vec<String>,
/// Adapter-specific configuration. Required for Bedrock (`{\"region\":\"us-east-1\"}`), optional for VertexAI (`{\"location\":\"us-central1\"}`), not used by other adapters.
#[serde(
rename = "config",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub config: Option<Option<std::collections::HashMap<String, serde_json::Value>>>,
#[serde(rename = "createdAt")]
pub created_at: String,
#[serde(rename = "updatedAt")]
pub updated_at: String,
}
impl LlmConnection {
/// LLM API connection configuration (secrets excluded)
pub fn new(
id: String,
provider: String,
adapter: String,
display_secret_key: String,
custom_models: Vec<String>,
with_default_models: bool,
extra_header_keys: Vec<String>,
created_at: String,
updated_at: String,
) -> LlmConnection {
LlmConnection {
id,
provider,
adapter,
display_secret_key,
base_url: None,
custom_models,
with_default_models,
extra_header_keys,
config: None,
created_at,
updated_at,
}
}
}