Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@
result = workspace.execute_command("ls -la")
"""

# Override parent's server_image default to None so that callers
# providing base_image don't need to explicitly pass server_image=None.
server_image: str | None = Field(

Check warning on line 33 in openhands-workspace/openhands/workspace/docker/dev_workspace.py

View workflow job for this annotation

GitHub Actions / SDK programmatic API (Griffe)

DockerDevWorkspace.server_image

Attribute value was changed: `Field(default='ghcr.io/openhands/agent-server:latest-python', description='Pre-built agent server image to use.')` -> `Field(default=None, description='Pre-built agent server image. Mutually exclusive with base_image.')`
default=None,
description="Pre-built agent server image. Mutually exclusive with base_image.",
)

# Add base_image support
base_image: str | None = Field(
default=None,
Expand Down
Loading