We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 642b4b9 commit 04ea665Copy full SHA for 04ea665
1 file changed
temporalio/contrib/langgraph/_plugin.py
@@ -62,7 +62,12 @@ def __init__(
62
streaming_topic: str | None = None,
63
streaming_batch_interval: timedelta = timedelta(milliseconds=100),
64
):
65
- """Initialize the LangGraph plugin with graphs, entrypoints, and tasks."""
+ """Initialize the LangGraph plugin with graphs, entrypoints, and tasks.
66
+
67
+ .. warning::
68
+ Streaming support is experimental and may change in
69
+ future versions.
70
+ """
71
if sys.version_info < (3, 11):
72
warnings.warn( # type: ignore[reportUnreachable]
73
"LangGraphPlugin requires Python >= 3.11 for full async support. "
0 commit comments