Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions libs/sdk-py/langgraph_sdk/schema.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Data models for interacting with the LangGraph API."""

from __future__ import annotations
Expand Down Expand Up @@ -378,6 +378,8 @@
"""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):
Expand Down Expand Up @@ -488,6 +490,7 @@
"metadata",
"kwargs",
"multitask_strategy",
"langsmith_session_name",
]

CronSelectField = Literal[
Expand Down
Loading