Request body for creating an agent graph
| Name | Type | Description | Notes |
|---|---|---|---|
| key | string | A unique key for the agent graph | [default to undefined] |
| name | string | A human-readable name for the agent graph | [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 | [optional] [default to undefined] |
| maintainerTeamKey | string | The key of the team that maintains this agent graph | [optional] [default to undefined] |
| rootConfigKey | string | The AI Config key of the root node. A missing root implies a newly created graph with metadata only. | [optional] [default to undefined] |
| edges | Array<AgentGraphEdgePost> | The edges in the graph. If edges or rootConfigKey is present, both must be present. | [optional] [default to undefined] |
import { AgentGraphPost } from 'launchdarkly-api-typescript';
const instance: AgentGraphPost = {
key,
name,
description,
maintainerId,
maintainerTeamKey,
rootConfigKey,
edges,
};