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
2 changes: 1 addition & 1 deletion agentdesk/runtime/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def view(
ui_container: Optional[Container] = None

for container in client.containers.list():
if container.image.tags[0] == UI_IMG: # type: ignore
if container.image.tags and container.image.tags[0] == UI_IMG: # type: ignore
print("found running UI container")
# Retrieve the host port for the existing container
host_port = container.attrs["NetworkSettings"]["Ports"]["3000/tcp"][0][ # type: ignore
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "agentdesk"
version = "0.2.105"
version = "0.2.106"
description = "A desktop for AI agents"
authors = ["Patrick Barker <patrickbarkerco@gmail.com>"]
license = "MIT"
Expand Down