chore: Make remote runtime class default to None (#6919)

This commit is contained in:
Xingyao Wang 2025-02-24 12:51:48 -05:00 committed by GitHub
parent aa15c9d385
commit 0217a7cfbd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,11 +53,11 @@ class SandboxConfig(BaseModel):
remote_runtime_api_timeout: int = Field(default=10)
remote_runtime_enable_retries: bool = Field(default=False)
remote_runtime_class: str | None = Field(
default='sysbox'
default=None
) # can be "None" (default to gvisor) or "sysbox" (support docker inside runtime + more stable)
enable_auto_lint: bool = Field(
default=False # once enabled, OpenHands would lint files after editing
)
default=False
) # once enabled, OpenHands would lint files after editing
use_host_network: bool = Field(default=False)
runtime_extra_build_args: list[str] | None = Field(default=None)
initialize_plugins: bool = Field(default=True)