Request body for updating an agent graph. If rootConfigKey or edges are present, both must be present.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | string | A human-readable name for the agent graph | [optional] [default to undefined] |
| description | string | A description of the agent graph | [optional] [default to undefined] |
| maintainerId | string | The ID of the member who maintains this agent graph. Pass an empty string to remove maintainer. | [optional] [default to undefined] |
| maintainerTeamKey | string | The key of the team that maintains this agent graph. Pass an empty string to remove maintainer. | [optional] [default to undefined] |
| rootConfigKey | string | The AI Config key of the root node. If present, edges must also be present. | [optional] [default to undefined] |
| edges | Array<AgentGraphEdge> | The edges in the graph. If present, rootConfigKey must also be present. Replaces all existing edges. | [optional] [default to undefined] |
import { AgentGraphPatch } from 'launchdarkly-api-typescript';
const instance: AgentGraphPatch = {
name,
description,
maintainerId,
maintainerTeamKey,
rootConfigKey,
edges,
};