An agent graph representing a directed graph of AI Configs
| Name | Type | Description | Notes |
|---|---|---|---|
| _access | AiConfigsAccess | [optional] [default to undefined] | |
| 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] |
| _maintainer | AgentGraphMaintainer | [optional] [default to undefined] | |
| rootConfigKey | string | The AI Config key of the root node | [optional] [default to undefined] |
| edges | Array<AgentGraphEdge> | The edges in the graph | [optional] [default to undefined] |
| createdAt | number | [default to undefined] | |
| updatedAt | number | [default to undefined] |
import { AgentGraph } from 'launchdarkly-api-typescript';
const instance: AgentGraph = {
_access,
key,
name,
description,
_maintainer,
rootConfigKey,
edges,
createdAt,
updatedAt,
};