read and write tools, moved schemas to tool/__init__
This commit is contained in:
@@ -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,
|
||||
]
|
||||
Reference in New Issue
Block a user