Skip to content

Commit 5859f9e

Browse files
Merge branch 'feat/multiple-display-support' into feat/cursor-position-tool
2 parents 81f7244 + 7392148 commit 5859f9e

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

src/askui/tools/agent_os.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
from pydantic import BaseModel, Field
66

77
if TYPE_CHECKING:
8-
from askui.tools.askui.askui_ui_controller_grpc.generated.AgentOS_Send_Request_2501 import (
8+
from askui.tools.askui.askui_ui_controller_grpc.generated.AgentOS_Send_Request_2501 import ( # noqa: E501
99
RenderObjectStyle,
10-
) # noqa: E501
10+
)
1111

1212

1313
ModifierKey = Literal[

src/askui/tools/askui/askui_controller.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
from askui.tools.askui.askui_ui_controller_grpc.generated import (
3030
Controller_V1_pb2_grpc as controller_v1,
3131
)
32-
from askui.tools.askui.askui_ui_controller_grpc.generated.AgentOS_Send_Request_2501 import (
32+
from askui.tools.askui.askui_ui_controller_grpc.generated.AgentOS_Send_Request_2501 import ( # noqa: E501
3333
RenderObjectStyle,
34-
) # noqa: E501
35-
from askui.tools.askui.askui_ui_controller_grpc.generated.AgentOS_Send_Response_2501 import (
34+
)
35+
from askui.tools.askui.askui_ui_controller_grpc.generated.AgentOS_Send_Response_2501 import ( # noqa: E501
3636
AskuiAgentosSendResponseSchema,
37-
) # noqa: E501
37+
)
3838
from askui.tools.askui.command_helpers import (
3939
create_clear_render_objects_command,
4040
create_delete_render_object_command,

src/askui/tools/list_display_tool.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ def __init__(self, agent_os: AgentOs) -> None:
1212
name="list_display",
1313
description="""
1414
This tool is useful for listing all the available displays.
15-
This is useful when the agent is not able to find the information on the current display.
15+
This is useful when the agent is not able to find the information on the
16+
current display.
1617
""",
1718
)
1819
self._agent_os: AgentOs = agent_os

src/askui/tools/set_display_tool.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ def __init__(self, agent_os: AgentOs) -> None:
1212
name="set_display",
1313
description="""
1414
This tool is useful for setting the default display screen.
15-
This is useful when the agent is not able to find the information on the current display.
15+
This is useful when the agent is not able to find the information on the
16+
current display.
1617
""",
1718
)
1819
self._agent_os: AgentOs = agent_os

0 commit comments

Comments
 (0)