From 4d80f4b1a5d21779d0bab8e007f108eef66d2802 Mon Sep 17 00:00:00 2001 From: Sydney Runkle Date: Mon, 28 Jul 2025 19:11:30 -0400 Subject: [PATCH] a few more nits --- docs/docs/agents/context.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/agents/context.md b/docs/docs/agents/context.md index 88401b9be..7ee676daf 100644 --- a/docs/docs/agents/context.md +++ b/docs/docs/agents/context.md @@ -22,11 +22,11 @@ LangGraph provides three ways to manage context, combining the mutability and li ## Static Runtime Context -Static runtime context represents immutable data like user metadata, tools, and database connections that's passed to an application at the start of a run via the `context` argument to `invoke`/`stream`. This data doesn't change during execution. +**Static runtime context** represents immutable data like user metadata, tools, and database connections that's passed to an application at the start of a run via the `context` argument to `invoke`/`stream`. This data doesn't change during execution. !!! version-added "New in LangGraph v0.6: `Runtime.context` replaces `config['configurable']`" - The `Runtime` object is recommended to access static context and runtime-specific information like the store and stream writer. + The `Runtime` object is recommended to access static context and other utilities like the active store and stream writer. !!! note "Application configuration vs. LLM Context"