Update autogpt_platform/backend/backend/api/features/chat/tools/find_block.py

Co-authored-by: Toran Bruce Richards <toran.richards@gmail.com>
This commit is contained in:
Swifty
2026-02-12 09:34:47 +01:00
committed by GitHub
parent 5f3fb7900a
commit dc8128bbfb

View File

@@ -173,7 +173,7 @@ class FindBlockTool(BaseTool):
return BlockListResponse(
message=(
f"Found {len(blocks)} block(s) matching '{query}'. "
"To see a block's inputs/outputs and execute it, use run_block with the block's 'id'."
"To see a block's inputs/outputs and execute it, use run_block with the block's 'id' - providing no inputs."
),
blocks=blocks,
count=len(blocks),