We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba6d3dd commit 206e42eCopy full SHA for 206e42e
1 file changed
packages/sdk/server-ai/src/ldai/client.py
@@ -444,12 +444,12 @@ def agent_graph(
444
context=context,
445
enabled=False,
446
)
447
-
+
448
edge_keys = list[str](variation.get("edges", {}).keys())
449
all_agent_keys = set[str]([variation.get("root")])
450
for edge_key in edge_keys:
451
for single_edge in variation.get("edges", {}).get(edge_key, []):
452
- all_agent_keys.add(single_edge.get("key", ""))
+ all_agent_keys.add(single_edge.get("key", ""))
453
454
agent_configs = {
455
key: self.agent_config(key, context, AIAgentConfigDefault(enabled=False))
0 commit comments