Add missing 'running' RunStatus (#4508)

This commit is contained in:
William FH
2025-05-02 05:36:58 +00:00
committed by GitHub
parent dd4ad48864
commit d6e20e6d09
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -16,10 +16,11 @@ from typing import (
Json = Optional[dict[str, Any]]
"""Represents a JSON-like structure, which can be None or a dictionary with string keys and any values."""
RunStatus = Literal["pending", "error", "success", "timeout", "interrupted"]
RunStatus = Literal["pending", "running", "error", "success", "timeout", "interrupted"]
"""
Represents the status of a run:
- "pending": The run is waiting to start.
- "running": The run is currently executing.
- "error": The run encountered an error and stopped.
- "success": The run completed successfully.
- "timeout": The run exceeded its time limit.
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langgraph-sdk"
version = "0.1.66"
version = "0.1.67"
description = "SDK for interacting with LangGraph API"
authors = []
license = "MIT"