From d9ed7708a045188a220d7c50182cd6c066710482 Mon Sep 17 00:00:00 2001 From: Josh Rogers Date: Tue, 14 Jul 2026 11:22:23 -0400 Subject: [PATCH] chore: add session_name to runs params --- libs/sdk-py/langgraph_sdk/schema.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/sdk-py/langgraph_sdk/schema.py b/libs/sdk-py/langgraph_sdk/schema.py index 16b197db3..61fbf95da 100644 --- a/libs/sdk-py/langgraph_sdk/schema.py +++ b/libs/sdk-py/langgraph_sdk/schema.py @@ -378,6 +378,8 @@ class Run(TypedDict): """The run metadata.""" multitask_strategy: MultitaskStrategy """Strategy to handle concurrent runs on the same thread.""" + langsmith_session_name: NotRequired[str | None] + """The LangSmith session name associated with this run.""" class Cron(TypedDict): @@ -488,6 +490,7 @@ RunSelectField = Literal[ "metadata", "kwargs", "multitask_strategy", + "langsmith_session_name", ] CronSelectField = Literal[