LLMCreationRequest
LLMCreationRequest documentation for .NET SDK
Request body for creating a new LLM. An LLM represents a configuration for text generation services.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Validate | Object | [optional] | |
| DisplayName | string | User-facing name of the LLM | |
| Description | string | Description of the LLM | [optional] |
| ProviderType | LLMProviderType | ||
| EndpointUrl | string | API endpoint URL | |
| ApiPath | string | API path for chat/completions request (defaults to /v1/chat/completions if not provided) | [optional] |
| ModelIdentifier | string | Model identifier | |
| SupportedModalities | List<Modality> | Supported content modalities (defaults to TEXT if not provided) | [optional] |
| Credentials | EndpointAuthentication | [optional] | |
| Labels | Dictionary<string, string> | User-defined labels for categorization | [optional] |
| VarVersion | string | Version information | [optional] |
| MonitoringEndpoint | string | Monitoring endpoint URL | [optional] |
| Capabilities | LLMCapabilities | ||
| DefaultSamplingParams | LLMSamplingParams | [optional] | |
| MaxContextLength | int? | Maximum context window size in tokens | [optional] |
| ClientConfig | Dictionary<string, Object> | Provider-specific client configuration as flexible JSON structure | [optional] |
| OwnerId | string | Optional owner ID. If not provided, derived from the authentication context. Requires CREATE_LLM_ANY permission if specified. | [optional] |