Merge branch 'main' into update-openapi-spec-v0.5.25

This commit is contained in:
William FH
2025-11-24 13:40:53 -08:00
committed by GitHub
3 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
from langgraph_sdk.auth import Auth
from langgraph_sdk.client import get_client, get_sync_client
__version__ = "0.2.9"
__version__ = "0.2.10"
__all__ = ["Auth", "get_client", "get_sync_client"]
+10
View File
@@ -1033,6 +1033,7 @@ class AssistantsClient:
*,
metadata: Json = None,
graph_id: str | None = None,
name: str | None = None,
limit: int = 10,
offset: int = 0,
sort_by: AssistantSortBy | None = None,
@@ -1047,6 +1048,8 @@ class AssistantsClient:
metadata: Metadata to filter by. Exact match filter for each KV pair.
graph_id: The ID of the graph to filter by.
The graph ID is normally set in your langgraph.json configuration.
name: The name of the assistant to filter by.
The filtering logic will match assistants where 'name' is a substring (case insensitive) of the assistant name.
limit: The maximum number of results to return.
offset: The number of results to skip.
sort_by: The field to sort by.
@@ -1077,6 +1080,8 @@ class AssistantsClient:
payload["metadata"] = metadata
if graph_id:
payload["graph_id"] = graph_id
if name:
payload["name"] = name
if sort_by:
payload["sort_by"] = sort_by
if sort_order:
@@ -4289,6 +4294,7 @@ class SyncAssistantsClient:
*,
metadata: Json = None,
graph_id: str | None = None,
name: str | None = None,
limit: int = 10,
offset: int = 0,
sort_by: AssistantSortBy | None = None,
@@ -4303,6 +4309,8 @@ class SyncAssistantsClient:
metadata: Metadata to filter by. Exact match filter for each KV pair.
graph_id: The ID of the graph to filter by.
The graph ID is normally set in your langgraph.json configuration.
name: The name of the assistant to filter by.
The filtering logic will match assistants where 'name' is a substring (case insensitive) of the assistant name.
limit: The maximum number of results to return.
offset: The number of results to skip.
headers: Optional custom headers to include with the request.
@@ -4330,6 +4338,8 @@ class SyncAssistantsClient:
payload["metadata"] = metadata
if graph_id:
payload["graph_id"] = graph_id
if name:
payload["name"] = name
if sort_by:
payload["sort_by"] = sort_by
if sort_order:
+1
View File
@@ -413,6 +413,7 @@ CronSelectField = Literal[
"next_run_date",
"metadata",
"now",
"on_run_completed",
]
PrimitiveData = str | int | float | bool | None