Spaces:
Runtime error
Runtime error
File size: 1,183 Bytes
e67043b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
from pathlib import Path
from ..tool import Tool
def build_tool(config) -> Tool:
tool = Tool(
"File Operation Tool",
"Write / read file to / from disk",
name_for_model="file_operation",
description_for_model="Plugin for operating files",
logo_url=None,
contact_email=None,
legal_info_url=None,
)
@tool.get("/write_file")
def write_file(file_path: str, text: str) -> str:
"""write file to disk"""
write_path = Path(file_path)
try:
write_path.parent.mkdir(exist_ok=True, parents=False)
with write_path.open("w", encoding="utf-8") as f:
f.write(text)
return f"File written successfully to {file_path}."
except Exception as e:
return "Error: " + str(e)
@tool.get("/read_file")
def read_file(file_path: str) -> str:
"""read file from disk"""
read_path = Path(file_path)
try:
with read_path.open("r", encoding="utf-8") as f:
content = f.read()
return content
except Exception as e:
return "Error: " + str(e)
return tool
|