Skip to content

Commit 004a56c

Browse files
update readme and docs
1 parent 0c8f67e commit 004a56c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,8 @@ class TestTool(Tool):
669669
"query": {"type": "string", "description": "Search query text"},
670670
"user_id": {"type": "string", "description": "User ID for the search session"}
671671
},
672-
"required": ["query", "user_id"]
672+
"required": ["query", "user_id"],
673+
"additionalProperties": False,
673674
}
674675

675676
async def execute(self, **params) -> Dict[str, Any]:

docs/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,8 @@ Inline Tool Example
608608
"query": {"type": "string", "description": "Search query text"},
609609
"user_id": {"type": "string", "description": "User ID for the search session"}
610610
},
611-
"required": ["query", "user_id"]
611+
"required": ["query", "user_id"],
612+
"additionalProperties": False,
612613
}
613614
614615
async def execute(self, **params) -> Dict[str, Any]:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "solana-agent"
3-
version = "30.0.5"
3+
version = "30.0.6"
44
description = "AI Agents for Solana"
55
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)