Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/oss/deepagents/sandboxes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ You can also call the backend `execute()` method directly in your application co

from langchain_vercel_sandbox import VercelSandbox

sandbox = Sandbox.create()
sandbox = Sandbox.create(runtime="python3.13")
backend = VercelSandbox(sandbox=sandbox)

try:
Expand Down Expand Up @@ -705,7 +705,7 @@ Use `upload_files()` to populate the sandbox before the agent runs. Paths must b

from langchain_vercel_sandbox import VercelSandbox

sandbox = Sandbox.create()
sandbox = Sandbox.create(runtime="python3.13")
backend = VercelSandbox(sandbox=sandbox)

backend.upload_files(
Expand Down Expand Up @@ -877,7 +877,7 @@ Use `download_files()` to retrieve files from the sandbox after the agent finish

from langchain_vercel_sandbox import VercelSandbox

sandbox = Sandbox.create()
sandbox = Sandbox.create(runtime="python3.13")
backend = VercelSandbox(sandbox=sandbox)

results = backend.download_files(["/src/index.py", "/output.txt"])
Expand Down
4 changes: 2 additions & 2 deletions src/oss/python/integrations/sandboxes/vercel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ from vercel.sandbox import Sandbox

from langchain_vercel_sandbox import VercelSandbox

sandbox = Sandbox.create()
sandbox = Sandbox.create(runtime="python3.13")
backend = VercelSandbox(sandbox=sandbox)

try:
Expand All @@ -55,7 +55,7 @@ from langchain_anthropic import ChatAnthropic
from deepagents import create_deep_agent
from langchain_vercel_sandbox import VercelSandbox

sandbox = Sandbox.create()
sandbox = Sandbox.create(runtime="python3.13")
backend = VercelSandbox(sandbox=sandbox)

agent = create_deep_agent(
Expand Down
2 changes: 1 addition & 1 deletion src/snippets/deepagents-sandbox-basic-py.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
from langchain_vercel_sandbox import VercelSandbox
from vercel.sandbox import Sandbox

sandbox = Sandbox.create()
sandbox = Sandbox.create(runtime="python3.13")
backend = VercelSandbox(sandbox=sandbox)

agent = create_deep_agent(
Expand Down
2 changes: 1 addition & 1 deletion src/snippets/sandboxes-basic-tabs-py.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ import DeepagentsSandboxBasicDaytonaPy from '/snippets/code-samples/deepagents-s
from langchain_vercel_sandbox import VercelSandbox
from vercel.sandbox import Sandbox

sandbox = Sandbox.create()
sandbox = Sandbox.create(runtime="python3.13")
backend = VercelSandbox(sandbox=sandbox)

agent = create_deep_agent(
Expand Down
Loading