read and write tools, moved schemas to tool/__init__

This commit is contained in:
2026-02-21 14:51:39 -07:00
parent 3085f82179
commit 0cd089894b
5 changed files with 165 additions and 19 deletions
+17
View File
@@ -0,0 +1,17 @@
# tools/__init__.py
from tools.files import READ_FILE_SCHEMA, WRITE_FILE_SCHEMA, read_file, write_file
from tools.bash import BASH_SCHEMA, bash
__all__ = [
"bash",
"read_file",
"write_file",
"TOOL_SCHEMAS",
]
TOOL_SCHEMAS = [
BASH_SCHEMA,
READ_FILE_SCHEMA,
WRITE_FILE_SCHEMA,
]