patchaiconfigvariationrequest.md•10.7 kB
# PatchAIConfigVariationRequest
## Example Usage
```typescript
import { PatchAIConfigVariationRequest } from "@launchdarkly/mcp-server/models/operations";
let value: PatchAIConfigVariationRequest = {
ldAPIVersion: "beta",
projectKey: "<value>",
configKey: "<value>",
variationKey: "<value>",
};
```
## Fields
| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `ldAPIVersion` | [operations.PatchAIConfigVariationLDAPIVersion](../../models/operations/patchaiconfigvariationldapiversion.md) | :heavy_check_mark: | Version of the endpoint. | |
| `projectKey` | *string* | :heavy_check_mark: | N/A | |
| `configKey` | *string* | :heavy_check_mark: | N/A | |
| `variationKey` | *string* | :heavy_check_mark: | N/A | |
| `aiConfigVariationPatch` | [components.AIConfigVariationPatch](../../models/components/aiconfigvariationpatch.md) | :heavy_minus_sign: | AI Config variation object to update | {<br/>"instructions": "instructions",<br/>"name": "name",<br/>"description": "description",<br/>"messages": [<br/>{<br/>"role": "role",<br/>"content": "content"<br/>},<br/>{<br/>"role": "role",<br/>"content": "content"<br/>}<br/>],<br/>"comment": "comment",<br/>"model": "{}",<br/>"published": true,<br/>"state": "state",<br/>"modelConfigKey": "modelConfigKey"<br/>} |