langfuse-client-base 0.12.0

Auto-generated Langfuse API client from OpenAPI specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# UpsertLlmConnectionRequest

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**provider** | **String** | Provider name (e.g., 'openai', 'my-gateway'). Must be unique in project, used for upserting. | 
**adapter** | [**models::LlmAdapter**]LlmAdapter.md |  | 
**secret_key** | **String** | Secret key for the LLM API. | 
**base_url** | Option<**String**> | Custom base URL for the LLM API | [optional]
**custom_models** | Option<**Vec<String>**> | List of custom model names | [optional]
**with_default_models** | Option<**bool**> | Whether to include default models. Default is true. | [optional]
**extra_headers** | Option<**std::collections::HashMap<String, String>**> | Extra headers to send with requests | [optional]
**config** | Option<**std::collections::HashMap<String, serde_json::Value>**> | Adapter-specific configuration. Validation rules: - **Bedrock**: Required. Must be `{\"region\": \"<aws-region>\"}` (e.g., `{\"region\":\"us-east-1\"}`) - **VertexAI**: Optional. If provided, must be `{\"location\": \"<gcp-location>\"}` (e.g., `{\"location\":\"us-central1\"}`) - **Other adapters**: Not supported. Omit this field or set to null. | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)