From 5d771c28d2878717e6e487feabd295cddbbb0a4e Mon Sep 17 00:00:00 2001 From: "open-swe-dev[bot]" Date: Thu, 10 Jul 2025 23:48:51 +0000 Subject: [PATCH] Apply patch --- fix.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 fix.patch diff --git a/fix.patch b/fix.patch new file mode 100644 index 000000000..e2d178d25 --- /dev/null +++ b/fix.patch @@ -0,0 +1,19 @@ +--- client_backup.py ++++ libs/sdk-py/langgraph_sdk/client.py +@@ -2223,7 +2223,7 @@ + + async def join( + self, thread_id: str, run_id: str, *, headers: dict[str, str] | None = None +- ) -> dict: ++ ) -> dict[str, Any]: + """Block until a run is done. Returns the final state of the thread. + + Args: +@@ -2232,7 +2232,7 @@ + headers: Optional custom headers to include with the request. + + Returns: +- None ++ dict[str, Any]: The final state values of the thread + + ???+ example "Example Usage"