Skip to content
Merged
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
4 changes: 3 additions & 1 deletion src/askui/prompts/act_prompts.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@
down/up to see everything before deciding something isn't available.
* When using your function calls, they take a while to run and send back
to you. Where possible/feasible, try to chain multiple of these calls
all into one function calls request."""
all into one function calls request.
* If you need to execute a click, make sure to move the mouse to the correct
position first!"""

ANDROID_CAPABILITIES = """You are an autonomous Android device control agent
operating via ADB on a test device with full system access.
Expand Down
1 change: 1 addition & 0 deletions src/askui/speaker/cache_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,7 @@ def _should_skip_step(self, step: ToolUseBlockParam) -> bool:
"retrieve_available_trajectories_tool",
"switch_speaker",
"execute_cached_executions_tool", # backward compat for old caches
"print_to_console", # verbosity is not needed during cached executions
]
return any(step.name.startswith(prefix) for prefix in tools_to_skip)

Expand Down