Skip to content

Commit d204f94

Browse files
aamir shahzadaamir shahzad
authored andcommitted
Fix broken deepagents doc links returning 404
Fixes #2839 - overview.mdx: Fix 4 broken `#file-system-access` anchors β†’ `#virtual-filesystem-access` - quickstart.mdx: Fix `#to-do-list-tracking` β†’ `#planning-capabilities` and 2 broken `#file-system-access` β†’ `#virtual-filesystem-access` - products.mdx: Fix `#streaming` anchor β†’ `/oss/deepagents/streaming/overview` - changelog.mdx: Fix `#conversation-history-summarization` β†’ `#summarization`
1 parent 2dfd0c2 commit d204f94

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

β€Žsrc/oss/concepts/products.mdxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ While you can accomplish similar tasks with LangChain, LangGraph, and Deep Agent
123123
| Skills | [Multi-agent skills](/oss/langchain/multi-agent/skills) | - | [Skills](/oss/deepagents/skills) |
124124
| Subagents | [Multi-agent subagents](/oss/langchain/multi-agent/subagents) | [Subgraphs](/oss/langgraph/use-subgraphs) | [Subagents](/oss/deepagents/subagents) |
125125
| Human-in-the-loop | [Human-in-the-loop middleware](/oss/langchain/human-in-the-loop) | [Interrupts](/oss/langgraph/interrupts) | [`interrupt_on` parameter](/oss/deepagents/harness#human-in-the-loop) |
126-
| Streaming | [Agent Streaming](/oss/langchain/streaming/overview) | [Streaming](/oss/langgraph/streaming) | [Streaming](/oss/deepagents/harness#streaming) |
126+
| Streaming | [Agent Streaming](/oss/langchain/streaming/overview) | [Streaming](/oss/langgraph/streaming) | [Streaming](/oss/deepagents/streaming/overview) |
127127

128128
## Learn more
129129

β€Žsrc/oss/deepagents/overview.mdxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Use the **Deep Agents CLI** when you want a coding agent on the command line, bu
115115
Deep agents include a built-in [`write_todos`](/oss/langchain/middleware/built-in#to-do-list) tool that enables agents to break down complex tasks into discrete steps, track progress, and adapt plans as new information emerges.
116116
</Card>
117117
<Card title="Context management" icon="scissors">
118-
File system tools ([`ls`](/oss/deepagents/harness#file-system-access), [`read_file`](/oss/deepagents/harness#file-system-access), [`write_file`](/oss/deepagents/harness#file-system-access), [`edit_file`](/oss/deepagents/harness#file-system-access)) allow agents to offload large context to in-memory or filesystem storage, preventing context window overflow and enabling work with variable-length tool results.
118+
File system tools ([`ls`](/oss/deepagents/harness#virtual-filesystem-access), [`read_file`](/oss/deepagents/harness#virtual-filesystem-access), [`write_file`](/oss/deepagents/harness#virtual-filesystem-access), [`edit_file`](/oss/deepagents/harness#virtual-filesystem-access)) allow agents to offload large context to in-memory or filesystem storage, preventing context window overflow and enabling work with variable-length tool results.
119119
</Card>
120120
<Card title="Pluggable filesystem backends" icon="plug">
121121
The virtual filesystem is powered by [pluggable backends](/oss/deepagents/backends) that you can swap to fit your use case. Choose from in-memory state, local disk, LangGraph store for cross-thread persistence, [sandboxes](/oss/deepagents/sandboxes) for isolated code execution (Modal, Daytona, Deno), or combine multiple backends with composite routing. You can also implement your own custom backend.

β€Žsrc/oss/deepagents/quickstart.mdxβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ console.log(result.messages[result.messages.length - 1].content);
203203

204204
Your deep agent automatically:
205205

206-
1. **Plans its approach** using the built-in [`write_todos`](/oss/deepagents/harness#to-do-list-tracking) tool to break down the research task.
206+
1. **Plans its approach** using the built-in [`write_todos`](/oss/deepagents/harness#planning-capabilities) tool to break down the research task.
207207
1. **Conducts research** by calling the `internet_search` tool to gather information.
208-
1. **Manages context** by using file system tools ([`write_file`](/oss/deepagents/harness#file-system-access), [`read_file`](/oss/deepagents/harness#file-system-access)) to offload large search results.
208+
1. **Manages context** by using file system tools ([`write_file`](/oss/deepagents/harness#virtual-filesystem-access), [`read_file`](/oss/deepagents/harness#virtual-filesystem-access)) to offload large search results.
209209
1. **Spawns subagents** as needed to delegate complex subtasks to specialized subagents.
210210
1. **Synthesizes a report** to compile findings into a coherent response.
211211

β€Žsrc/oss/python/releases/changelog.mdxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rss: true
1414
## `deepagents` v0.4
1515

1616
* New integration packages for pluggable sandboxes: [langchain-modal](https://pypi.org/project/langchain-modal/), [langchain-daytona](https://pypi.org/project/langchain-daytona/), and [langchain-runloop](https://pypi.org/project/langchain-daytona/). See [sandboxes guide](/oss/deepagents/sandboxes) and example [data analysis tutorial](/oss/deepagents/data-analysis).
17-
* Changes to [conversation history summarization](/oss/deepagents/harness#conversation-history-summarization):
17+
* Changes to [conversation history summarization](/oss/deepagents/harness#summarization):
1818
* Summarization now happens in the model node via `wrap_model_call` events. Due to this we retain the full message history in the graph state.
1919
* More accurate token counting.
2020
* Summarization will now automatically trigger if a chat model raises a `ContextOverflowError` (defined in `langchain-core`). Currently `langchain-anthropic` and `langchain-openai` support this.

0 commit comments

Comments
Β (0)