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
8 changes: 5 additions & 3 deletions src/askui/tools/store/computer/experimental/get_file_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ def __init__(self, agent_os: ComputerAgentOS | None = None) -> None:
name="get_file_names_tool",
description=(
"Lists the names of regular files in an absolute directory on the "
"computer under automation. Subdirectories are not included鈥攐nly "
"files are returned. Use absolute paths as on the target machine. "
"Returns names only; use get_file_tool to read a file's contents."
"computer under automation. IMPORTANT: only files are returned - "
"folders and subdirectories are NOT included in the result and this "
"tool cannot be used to discover or navigate them. Use absolute "
"paths as on the target machine. Returns names only; use "
"get_file_tool to read a file's contents."
),
input_schema={
"type": "object",
Expand Down
Loading