Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.38 KB

File metadata and controls

37 lines (30 loc) · 1.38 KB

AgentGraph

An agent graph representing a directed graph of AI Configs

Properties

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]

Example

import { AgentGraph } from 'launchdarkly-api-typescript';

const instance: AgentGraph = {
    _access,
    key,
    name,
    description,
    _maintainer,
    rootConfigKey,
    edges,
    createdAt,
    updatedAt,
};

[Back to Model list] [Back to API list] [Back to README]