LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • Agent
  • Middleware
  • Backends
  • Sandboxes
  • Skills
  • Subagents
  • Configuration
  • Types
Modal
Daytona
Deno
Node VFS
Sandbox Standard Tests
  • Vitest
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

OverviewAgentMiddlewareBackendsSandboxesSkillsSubagentsConfigurationTypes
Modal
Daytona
Deno
Node VFS
Sandbox Standard Tests
Vitest
Language
Theme
JavaScriptdeepagentsbackendsExecuteResponse
Interface●Since v1.4

ExecuteResponse

Result of code execution. Simplified schema optimized for LLM consumption.

Copy
interface ExecuteResponse

Properties

property
exitCode: number | null

The process exit code. 0 indicates success, non-zero indicates failure

property
output: string

Combined stdout and stderr output of the executed command

property
truncated: boolean

Whether the output was truncated due to backend limitations

View source on GitHub