Skip to content

Commit 0e572ff

Browse files
feat(sdk): Add LangSmith integration metadata to deepagents (#1837)
1 parent 073893c commit 0e572ff

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

libs/deepagents/deepagents/graph.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,4 +292,11 @@ def create_deep_agent( # noqa: C901, PLR0912 # Complex graph assembly logic wi
292292
debug=debug,
293293
name=name,
294294
cache=cache,
295-
).with_config({"recursion_limit": 1000})
295+
).with_config(
296+
{
297+
"recursion_limit": 1000,
298+
"metadata": {
299+
"ls_integration": "deepagents",
300+
},
301+
}
302+
)

0 commit comments

Comments
 (0)