From 250a37072e7f455b436d619d6dd191681bdcb449 Mon Sep 17 00:00:00 2001 From: Martin Mauch Date: Tue, 18 Nov 2025 12:47:45 +0100 Subject: [PATCH 1/2] Fix indentation in README code example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b49b5b0..4ca223d 100644 --- a/README.md +++ b/README.md @@ -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", "")) ``` 3. **Zero-copy proxying** – every tool call stays within the sandbox, mirrored over stdio with strict timeouts. From fe5767a540a32cd32757536f225e130a5b6fca33 Mon Sep 17 00:00:00 2001 From: Martin Mauch Date: Tue, 18 Nov 2025 12:48:59 +0100 Subject: [PATCH 2/2] Fix indentation in README example code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ca223d..21c5989 100644 --- a/README.md +++ b/README.md @@ -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", "")) ``` 3. **Zero-copy proxying** – every tool call stays within the sandbox, mirrored over stdio with strict timeouts.