AhmadT198 commited on
Commit
06821d7
·
verified ·
1 Parent(s): a1e4c76
Files changed (1) hide show
  1. tools/report.py +18 -0
tools/report.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from langchain.tools import StructuredTool
2
+ from pydantic.v1 import BaseModel
3
+
4
+ def write_report(filename, html):
5
+ with open(filename, 'w') as f:
6
+ f.write(html)
7
+
8
+
9
+ class WriteReportArgsSchema(BaseModel):
10
+ filename: str
11
+ html: str
12
+
13
+ write_report_tool = StructuredTool.from_function(
14
+ name="write_report",
15
+ description="Write an HTML file to disk. Use this tool whenever someone asks for a report.",
16
+ func=write_report,
17
+ args_schema=WriteReportArgsSchema
18
+ )