An edge in an agent graph connecting two AI Configs
| 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] |
import { AgentGraphEdge } from 'launchdarkly-api-typescript';
const instance: AgentGraphEdge = {
key,
sourceConfig,
targetConfig,
handoff,
};