Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

AgentGraphEdge

An edge in an agent graph connecting two AI Configs

Properties

Name Type Description Notes
key str A unique key for this edge within the graph
source_config str The AI Config key that is the source of this edge
target_config str The AI Config key that is the target of this edge
handoff object The handoff options from the source AI Config to the target AI Config [optional]

Example

from launchdarkly_api.models.agent_graph_edge import AgentGraphEdge

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

# convert the object into a dict
agent_graph_edge_dict = agent_graph_edge_instance.to_dict()
# create an instance of AgentGraphEdge from a dict
agent_graph_edge_from_dict = AgentGraphEdge.from_dict(agent_graph_edge_dict)

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