feat(js-sdk): add config and parent_config to thread state schema (#1411)

* feat(js-sdk): add config and parent_config to thread state schema

* Bump to 0.0.5
This commit is contained in:
David Duong
2024-08-21 17:00:10 +02:00
committed by GitHub
parent 3d33b575d6
commit ebf060675d
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@langchain/langgraph-sdk",
"version": "0.0.4",
"version": "0.0.5",
"description": "Client library for interacting with the LangGraph API",
"type": "module",
"packageManager": "yarn@1.22.19",
+3
View File
@@ -101,6 +101,9 @@ export interface ThreadState<ValuesType = DefaultValues> {
metadata: Metadata;
created_at: Optional<string>;
parent_checkpoint_id: Optional<string>;
config: Config;
parent_config?: Config;
}
export interface Run {