From 89efd6e9153218a856870718c571d88cd06c4d2c Mon Sep 17 00:00:00 2001 From: Sydney Runkle Date: Mon, 28 Jul 2025 18:50:37 -0400 Subject: [PATCH] formatting --- docs/docs/agents/context.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/docs/agents/context.md b/docs/docs/agents/context.md index 2d51271a7..85edd4ec2 100644 --- a/docs/docs/agents/context.md +++ b/docs/docs/agents/context.md @@ -3,10 +3,12 @@ **Context engineering** is the [art and science of filling the context window with just the right information](https://x.com/karpathy/status/1937902205765607626) so that an AI application can accomplish a task. Context can be characterized along two key dimensions: **By mutability:** + - **Static context**: Immutable data that doesn't change during execution (e.g., user metadata, database connections, tools) - **Dynamic context**: Mutable data that evolves as the application runs (e.g., conversation history, intermediate results, tool call observations) **By lifetime:** + - **Runtime context**: Data scoped to a single run or invocation - **Cross-conversation context**: Data that persists across multiple conversations or sessions