Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.51 KB

File metadata and controls

40 lines (34 loc) · 1.51 KB

LaunchDarklyApi::AIConfigVariationPatch

Properties

Name Type Description Notes
comment String Human-readable description of what this patch changes [optional]
description String Description for agent when AI Config is in agent mode. [optional]
instructions String Instructions for agent when AI Config is in agent mode. [optional]
messages Array<Message> [optional]
model Object [optional]
model_config_key String [optional]
name String [optional]
published Boolean [optional]
state String One of 'archived', 'published' [optional]
tools Array<VariationToolPost> List of tools to use for this variation. The latest version of the tool will be used. [optional]
tool_keys Array<String> List of tool keys to use for this variation. The latest version of the tool will be used. [optional]
judge_configuration JudgeConfiguration [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::AIConfigVariationPatch.new(
  comment: null,
  description: null,
  instructions: null,
  messages: null,
  model: null,
  model_config_key: null,
  name: null,
  published: null,
  state: null,
  tools: null,
  tool_keys: null,
  judge_configuration: null
)