Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Result: constant overhead. Whether you manage 10 or 1000 tools, the system promp

matches = await runtime.search_tool_docs("calendar events", limit=5)
for hit in matches:
print(hit["server"], hit["tool"], hit.get("description", ""))
print(hit["server"], hit["tool"], hit.get("description", ""))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Thanks for fixing the indentation. While this makes the code syntactically correct, the relative indentation is 3 spaces, which is unconventional. For better readability and consistency with other Python examples in this file and the PEP 8 style guide, I suggest using a 4-space indent here.

Suggested change
print(hit["server"], hit["tool"], hit.get("description", ""))
print(hit["server"], hit["tool"], hit.get("description", ""))

```

3. **Zero-copy proxying** – every tool call stays within the sandbox, mirrored over stdio with strict timeouts.
Expand Down