Nadasr commited on
Commit
9b6536a
·
verified ·
1 Parent(s): 7fae465

Create tools/__init__.py

Browse files
Files changed (1) hide show
  1. tools/__init__.py +5 -0
tools/__init__.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ """Tools package for Policy Summarizer"""
2
+ from tools.web_scraper import web_scraper_tool
3
+ from tools.text_analyzer import text_analyzer_tool
4
+
5
+ __all__ = ['web_scraper_tool', 'text_analyzer_tool']