LLMUpdateRequest
LLMUpdateRequest documentation for Java SDK
LLMUpdateRequest
Request body for updating an existing LLM. All fields are optional - only specified fields will be updated.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| validate | Object | [optional] | |
| displayName | String | Update display name | [optional] |
| description | String | Update description | [optional] |
| endpointUrl | String | Update endpoint URL (must be valid HTTP/HTTPS URL) | [optional] |
| apiPath | String | Update API path | [optional] |
| modelIdentifier | String | Update model identifier (cannot be empty) | [optional] |
| supportedModalities | List<Modality> | Update supported modalities (if array contains ≥1 elements, replaces stored set; if empty or omitted, no change) | [optional] |
| credentials | EndpointAuthentication | [optional] | |
| version | String | Update version information | [optional] |
| monitoringEndpoint | String | Update monitoring endpoint URL | [optional] |
| capabilities | LLMCapabilities | [optional] | |
| defaultSamplingParams | LLMSamplingParams | [optional] | |
| maxContextLength | Integer | Update maximum context window size in tokens | [optional] |
| clientConfig | Map<String, Object> | Update provider-specific client configuration (replaces entire config; no merging) | [optional] |
| replaceLabels | Map<String, String> | Replace all existing labels with this set. Empty map clears all labels. Cannot be used with mergeLabels. | [optional] |
| mergeLabels | Map<String, String> | Merge with existing labels: upserts with overwrite. Labels not mentioned are preserved. Cannot be used with replaceLabels. | [optional] |