[PR #3517] [MERGED] oss(deepagents): updates galore #3559

Closed
opened 2026-06-05 18:23:29 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/3517
Author: @mdrxy
Created: 4/9/2026
Status: Merged
Merged: 4/9/2026
Merged by: @mdrxy

Base: mainHead: mdrxy/deepagents-revamp


📝 Commits (5)

📊 Changes

17 files changed (+1084 additions, -824 deletions)

View changed files

📝 src/docs.json (+1 -0)
src/images/providers/runloop-icon.svg (+1 -0)
📝 src/oss/deepagents/comparison.mdx (+9 -7)
📝 src/oss/deepagents/customization.mdx (+133 -117)
📝 src/oss/deepagents/deploy.mdx (+140 -57)
📝 src/oss/deepagents/going-to-production.mdx (+2 -2)
📝 src/oss/deepagents/models.mdx (+22 -37)
📝 src/oss/deepagents/overview.mdx (+1 -9)
📝 src/oss/deepagents/quickstart.mdx (+78 -3)
📝 src/oss/deepagents/sandboxes.mdx (+413 -424)
src/oss/javascript/integrations/sandboxes/index.mdx (+22 -0)
📝 src/oss/python/integrations/providers/moorcheh.mdx (+1 -1)
📝 src/oss/python/integrations/sandboxes/index.mdx (+17 -6)
📝 src/oss/python/integrations/vectorstores/moorcheh.mdx (+1 -1)
📝 src/snippets/chat-model-tabs-da-js.mdx (+24 -13)
📝 src/snippets/chat-model-tabs-da.mdx (+44 -19)
📝 src/snippets/deepagents-sandbox-basic-py.mdx (+175 -128)

📄 Description

Overhaul the Deep Agents documentation to reflect the deepagents deploy CLI workflow, expand multi-provider coverage, and bring all pages up to current style guide standards.

Changes

  • Multi-provider model tabs: new chat-model-tabs-da.mdx and chat-model-tabs-da-js.mdx snippets with OpenAI, Anthropic, Azure, Google Gemini, Bedrock, HuggingFace, and "Other" tabs — each showing default parameters, init_chat_model, and model class patterns
  • Quickstart provider expansion (quickstart.mdx): replace single-model examples with tabbed provider selection (Anthropic, OpenAI, Google, OpenRouter, Fireworks, Baseten, Ollama, Other) for both Python and JS
  • Sandboxes restructure (sandboxes.mdx): add "Basic usage" section before provider cards, expand lifecycle/scoping docs, split integration patterns into "agent in sandbox" vs "sandbox as tool" with per-language examples, add file transfer APIs (upload_files/download_files) and security considerations
  • Models page (models.mdx): add "Suggested models" table with eval-tested recommendations, add "Select a model at runtime" section demonstrating wrap_model_call middleware for dynamic model swapping
  • Customization reorg (customization.mdx): expand create_deep_agent/createDeepAgent signatures to show full parameter lists, move model section above tools, embed the new chat model tab snippets
  • Comparison updates (comparison.mdx): replace LangGraph Platform references with deepagents deploy in deployment rows and key differences
  • Model ID alignment: update stale identifiers across all snippets — claude-sonnet-4-20250514claude-sonnet-4-6, gpt-5.2gpt-5.4, gemini-2.5-flash-litegemini-3.1-pro-preview, fix Bedrock tab using GPT models (now uses Anthropic Claude)
  • Style guide fixes: complete truncated description in deploy.mdx, add missing description to models.mdx, replace --- horizontal rule with <Note> component, fix system:systemPrompt: in JS example, sort imports, fix typos ("modele", "foe"), fix finally/catch bug in JS sandbox example, add Runloop SVG icon

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/3517 **Author:** [@mdrxy](https://github.com/mdrxy) **Created:** 4/9/2026 **Status:** ✅ Merged **Merged:** 4/9/2026 **Merged by:** [@mdrxy](https://github.com/mdrxy) **Base:** `main` ← **Head:** `mdrxy/deepagents-revamp` --- ### 📝 Commits (5) - [`f131e65`](https://github.com/langchain-ai/docs/commit/f131e65c31c77076ba72d512221e05a2f01b206f) oss(deepagents): updates galore - [`d18c871`](https://github.com/langchain-ai/docs/commit/d18c871328138a2c9fb028750ae9d5308b01ad09) cr - [`1b9d122`](https://github.com/langchain-ai/docs/commit/1b9d12250f6fde2fd7efa5a9d0f3d83806d5b91d) cr - [`d6b9de0`](https://github.com/langchain-ai/docs/commit/d6b9de0dba3f607374f5b9b42b4dd3d445bf8b96) Merge branch 'main' into mdrxy/deepagents-revamp - [`b152b03`](https://github.com/langchain-ai/docs/commit/b152b03e92e16bdbe10ee418e7c9282739300683) cr ### 📊 Changes **17 files changed** (+1084 additions, -824 deletions) <details> <summary>View changed files</summary> 📝 `src/docs.json` (+1 -0) ➕ `src/images/providers/runloop-icon.svg` (+1 -0) 📝 `src/oss/deepagents/comparison.mdx` (+9 -7) 📝 `src/oss/deepagents/customization.mdx` (+133 -117) 📝 `src/oss/deepagents/deploy.mdx` (+140 -57) 📝 `src/oss/deepagents/going-to-production.mdx` (+2 -2) 📝 `src/oss/deepagents/models.mdx` (+22 -37) 📝 `src/oss/deepagents/overview.mdx` (+1 -9) 📝 `src/oss/deepagents/quickstart.mdx` (+78 -3) 📝 `src/oss/deepagents/sandboxes.mdx` (+413 -424) ➕ `src/oss/javascript/integrations/sandboxes/index.mdx` (+22 -0) 📝 `src/oss/python/integrations/providers/moorcheh.mdx` (+1 -1) 📝 `src/oss/python/integrations/sandboxes/index.mdx` (+17 -6) 📝 `src/oss/python/integrations/vectorstores/moorcheh.mdx` (+1 -1) 📝 `src/snippets/chat-model-tabs-da-js.mdx` (+24 -13) 📝 `src/snippets/chat-model-tabs-da.mdx` (+44 -19) 📝 `src/snippets/deepagents-sandbox-basic-py.mdx` (+175 -128) </details> ### 📄 Description Overhaul the Deep Agents documentation to reflect the `deepagents deploy` CLI workflow, expand multi-provider coverage, and bring all pages up to current style guide standards. ## Changes - **Multi-provider model tabs**: new `chat-model-tabs-da.mdx` and `chat-model-tabs-da-js.mdx` snippets with OpenAI, Anthropic, Azure, Google Gemini, Bedrock, HuggingFace, and "Other" tabs — each showing default parameters, `init_chat_model`, and model class patterns - **Quickstart provider expansion** (`quickstart.mdx`): replace single-model examples with tabbed provider selection (Anthropic, OpenAI, Google, OpenRouter, Fireworks, Baseten, Ollama, Other) for both Python and JS - **Sandboxes restructure** (`sandboxes.mdx`): add "Basic usage" section before provider cards, expand lifecycle/scoping docs, split integration patterns into "agent in sandbox" vs "sandbox as tool" with per-language examples, add file transfer APIs (`upload_files`/`download_files`) and security considerations - **Models page** (`models.mdx`): add "Suggested models" table with eval-tested recommendations, add "Select a model at runtime" section demonstrating `wrap_model_call` middleware for dynamic model swapping - **Customization reorg** (`customization.mdx`): expand `create_deep_agent`/`createDeepAgent` signatures to show full parameter lists, move model section above tools, embed the new chat model tab snippets - **Comparison updates** (`comparison.mdx`): replace LangGraph Platform references with `deepagents deploy` in deployment rows and key differences - **Model ID alignment**: update stale identifiers across all snippets — `claude-sonnet-4-20250514` → `claude-sonnet-4-6`, `gpt-5.2` → `gpt-5.4`, `gemini-2.5-flash-lite` → `gemini-3.1-pro-preview`, fix Bedrock tab using GPT models (now uses Anthropic Claude) - **Style guide fixes**: complete truncated `description` in `deploy.mdx`, add missing `description` to `models.mdx`, replace `---` horizontal rule with `<Note>` component, fix `system:` → `systemPrompt:` in JS example, sort imports, fix typos ("modele", "foe"), fix `finally`/`catch` bug in JS sandbox example, add Runloop SVG icon --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 18:23:29 -04:00
yindo closed this issue 2026-06-05 18:23:29 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#3559