Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

File metadata and controls

33 lines (24 loc) · 1.28 KB

AgentGraphEdgePost

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_post import AgentGraphEdgePost

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

# convert the object into a dict
agent_graph_edge_post_dict = agent_graph_edge_post_instance.to_dict()
# create an instance of AgentGraphEdgePost from a dict
agent_graph_edge_post_from_dict = AgentGraphEdgePost.from_dict(agent_graph_edge_post_dict)

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