Spaces:
Sleeping
Sleeping
Create tools/__init__.py
Browse files- 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']
|