Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.42 KB

File metadata and controls

38 lines (29 loc) · 1.42 KB

AgentGraph

An agent graph representing a directed graph of AI Configs

Properties

Name Type Description Notes
access AiConfigsAccess [optional]
key str A unique key for the agent graph
name str A human-readable name for the agent graph
description str A description of the agent graph [optional]
maintainer AgentGraphMaintainer [optional]
root_config_key str The AI Config key of the root node [optional]
edges List[AgentGraphEdge] The edges in the graph [optional]
created_at int
updated_at int

Example

from launchdarkly_api.models.agent_graph import AgentGraph

# TODO update the JSON string below
json = "{}"
# create an instance of AgentGraph from a JSON string
agent_graph_instance = AgentGraph.from_json(json)
# print the JSON string representation of the object
print(AgentGraph.to_json())

# convert the object into a dict
agent_graph_dict = agent_graph_instance.to_dict()
# create an instance of AgentGraph from a dict
agent_graph_from_dict = AgentGraph.from_dict(agent_graph_dict)

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