Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 973 Bytes

File metadata and controls

27 lines (20 loc) · 973 Bytes

AgentGraphEdge

An edge in an agent graph connecting two AI Configs

Properties

Name Type Description Notes
key string A unique key for this edge within the graph [default to undefined]
sourceConfig string The AI Config key that is the source of this edge [default to undefined]
targetConfig string The AI Config key that is the target of this edge [default to undefined]
handoff object The handoff options from the source AI Config to the target AI Config [optional] [default to undefined]

Example

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

const instance: AgentGraphEdge = {
    key,
    sourceConfig,
    targetConfig,
    handoff,
};

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