chore(sdk): add description field for assistants auth handlers (#1644)

Co-authored-by: David Duong <david@duong.cz>
This commit is contained in:
Parker J. Rule
2025-09-10 18:44:04 -04:00
committed by GitHub
parent 37da3a128f
commit 3b1e137f14
2 changed files with 7 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@langchain/langgraph-sdk": patch
---
Add `description` field for assistants auth handlers
+2
View File
@@ -21,6 +21,7 @@ interface AssistantCreate {
context?: Maybe<unknown>;
if_exists?: Maybe<"raise" | "do_nothing">;
name?: Maybe<string>;
description?: Maybe<string>;
graph_id: string;
}
@@ -42,6 +43,7 @@ interface AssistantUpdate {
context?: Maybe<unknown>;
graph_id?: Maybe<string>;
name?: Maybe<string>;
description?: Maybe<string>;
version?: Maybe<number>;
}