Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.48 KB

File metadata and controls

31 lines (24 loc) · 1.48 KB

AgentGraphPatch

Request body for updating an agent graph. If rootConfigKey or edges are present, both must be present.

Properties

Name Type Description Notes
name string A human-readable name for the agent graph [optional] [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. Pass an empty string to remove maintainer. [optional] [default to undefined]
maintainerTeamKey string The key of the team that maintains this agent graph. Pass an empty string to remove maintainer. [optional] [default to undefined]
rootConfigKey string The AI Config key of the root node. If present, edges must also be present. [optional] [default to undefined]
edges Array<AgentGraphEdge> The edges in the graph. If present, rootConfigKey must also be present. Replaces all existing edges. [optional] [default to undefined]

Example

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

const instance: AgentGraphPatch = {
    name,
    description,
    maintainerId,
    maintainerTeamKey,
    rootConfigKey,
    edges,
};

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