An edge in an agent graph connecting two AI Configs
| 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] |
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)