feat(sdk-py): Add name parameter to Assistants search API (#6483)

**Description:** The Agent Server API now supports searching for
assistants by name.
This commit is contained in:
Andrew Nguonly
2025-11-24 10:58:54 -08:00
committed by GitHub
parent d45f52ab0c
commit 33fbd1bb9c
3 changed files with 289 additions and 438 deletions
File diff suppressed because it is too large Load Diff
+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