diff --git a/src/askui/tools/agent_os.py b/src/askui/tools/agent_os.py index 2fbbb51b..344a83ab 100644 --- a/src/askui/tools/agent_os.py +++ b/src/askui/tools/agent_os.py @@ -296,7 +296,7 @@ def type(self, text: str, typing_speed: int = 50) -> None: Args: text (str): The text to be typed. typing_speed (int, optional): The speed of typing in characters per - minute. Defaults to `50`. + second. Defaults to `50`. """ raise NotImplementedError diff --git a/src/askui/tools/computer/type_tool.py b/src/askui/tools/computer/type_tool.py index adcfbf62..c2b11741 100644 --- a/src/askui/tools/computer/type_tool.py +++ b/src/askui/tools/computer/type_tool.py @@ -19,7 +19,7 @@ def __init__(self, agent_os: AgentOs | None = None) -> None: "typing_speed": { "type": "integer", "description": ( - "The speed of typing in characters per minute." + "The speed of typing in characters per second." " Defaults to 50" ), "default": 50, @@ -35,5 +35,5 @@ def __call__(self, text: str, typing_speed: int = 50) -> str: self.agent_os.type(text, typing_speed) return ( f"Text was typed: {text} with typing speed: " - f" {typing_speed} characters per minute." + f" {typing_speed} characters per second." )