From 474fb7b33ee70d018b159d806a89aeff0c9539f3 Mon Sep 17 00:00:00 2001 From: Sydney Runkle Date: Tue, 29 Jul 2025 10:22:50 -0400 Subject: [PATCH] consolidate --- docs/docs/agents/context.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/agents/context.md b/docs/docs/agents/context.md index fa02a239e..c11be7797 100644 --- a/docs/docs/agents/context.md +++ b/docs/docs/agents/context.md @@ -26,8 +26,8 @@ LangGraph provides three ways to manage context, which combines the mutability a !!! version-added "New in LangGraph v0.6: `context` replaces `config['configurable']`" - Runtime context should be passed to the `context` argument of `invoke`/`stream`. - This replaces the previous pattern of passing application configuration to `config['configurable']`. + Runtime context is now passed to the `context` argument of `invoke`/`stream`, + which replaces the previous pattern of passing application configuration to `config['configurable']`. !!! tip "Runtime context vs LLM context" @@ -115,7 +115,7 @@ graph.invoke( # (1)! See the [tool calling guide](../how-tos/tool-calling.md#configuration) for details. -!!! tip "Using the `Runtime` object in nodes and tools" +!!! tip The `Runtime` object can be used to access static context and other utilities like the active store and stream writer. See the [Runtime][langgraph.runtime.Runtime] documentation for details.