langgraph-api 0.0.13__py3-none-any.whl → 0.0.15__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of langgraph-api might be problematic. Click here for more details.

@@ -0,0 +1,11 @@
1
+ class RemoteException(Exception):
2
+ error: str
3
+
4
+ def __init__(self, error: str, *args: object) -> None:
5
+ super().__init__(*args)
6
+ self.error = error
7
+
8
+ # Used to nudge the serde to encode like BaseException
9
+ # @see /api/langgraph_api/shared/serde.py:default
10
+ def dict(self):
11
+ return {"error": self.error, "message": str(self)}
@@ -15,12 +15,14 @@
15
15
  "@typescript/vfs": "^1.6.0",
16
16
  "dedent": "^1.5.3",
17
17
  "hono": "^4.5.4",
18
+ "p-queue": "^8.0.1",
18
19
  "p-retry": "^6.2.0",
19
20
  "tsx": "^4.19.1",
20
21
  "typescript": "^5.5.4",
21
22
  "undici": "^6.19.7",
22
23
  "uuid": "^10.0.0",
23
24
  "winston": "^3.15.0",
25
+ "zeromq": "^6.1.1",
24
26
  "zod": "^3.23.8"
25
27
  },
26
28
  "devDependencies": {