Skip to content

Commit ea427ec

Browse files
authored
fix(deepagents): localize homepage (#1322)
1 parent 1ee0c6b commit ea427ec

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

src/oss/deepagents/overview.mdx

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ sidebarTitle: Overview
44
description: Build agents that can plan, use subagents, and leverage file systems for complex tasks
55
---
66

7+
:::python
78
[`deepagents`](https://pypi.org/project/deepagents/) is a standalone library for building agents that can tackle complex, multi-step tasks. Built on LangGraph and inspired by applications like Claude Code, Deep Research, and Manus, deep agents come with planning capabilities, file systems for context management, and the ability to spawn subagents.
9+
:::
10+
11+
:::js
12+
[`deepagents`](https://www.npmjs.com/package/deepagents) is a standalone library for building agents that can tackle complex, multi-step tasks. Built on LangGraph and inspired by applications like Claude Code, Deep Research, and Manus, deep agents come with planning capabilities, file systems for context management, and the ability to spawn subagents.
13+
:::
814

915
## When to use deep agents
1016

@@ -14,7 +20,13 @@ Use deep agents when you need agents that can:
1420
- **Delegate work** to specialized subagents for context isolation
1521
- **Persist memory** across conversations and threads
1622

23+
:::python
1724
For simpler use cases, consider using LangChain's [`create_agent`](/oss/langchain/agents) or building a custom [LangGraph](/oss/langgraph/overview) workflow.
25+
:::
26+
27+
:::js
28+
For simpler use cases, consider using LangChain's [`createAgent`](/oss/langchain/agents) or building a custom [LangGraph](/oss/langgraph/overview) workflow.
29+
:::
1830

1931
## Core capabilities
2032

@@ -42,6 +54,7 @@ Deep agents applications can be deployed via [LangSmith Deployment](/langsmith/d
4254

4355
## Get started
4456

57+
:::python
4558
<CardGroup cols={2}>
4659
<Card title="Quickstart" icon="rocket" href="/oss/deepagents/quickstart">
4760
Build your first deep agent
@@ -56,3 +69,21 @@ Deep agents applications can be deployed via [LangSmith Deployment](/langsmith/d
5669
See the `deepagents` API reference
5770
</Card>
5871
</CardGroup>
72+
:::
73+
74+
:::python
75+
<CardGroup cols={2}>
76+
<Card title="Quickstart" icon="rocket" href="/oss/deepagents/quickstart">
77+
Build your first deep agent
78+
</Card>
79+
<Card title="Customization" icon="sliders" href="/oss/deepagents/customization">
80+
Learn about customization options
81+
</Card>
82+
<Card title="Middleware" icon="layer-group" href="/oss/deepagents/middleware">
83+
Understand the middleware architecture
84+
</Card>
85+
<Card title="Reference" icon="arrow-up-right-from-square" href="https://reference.langchain.com/javascript/deepagents/">
86+
See the `deepagents` API reference
87+
</Card>
88+
</CardGroup>
89+
:::

0 commit comments

Comments
 (0)