Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Shamik
/
multi_agent_rag
like
0
Running
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
Shamik
commited on
10 days ago
Commit
9f284e8
·
verified
·
1 Parent(s):
2e83600
feat: adding app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
from src.insurance_assistants.ui import UI
2
+
3
+
if __name__ == "__main__":
4
+
UI().launch(allowed_paths=[(PROJECT_ROOT_DIR /"data/policy_wordings").as_posix()],
5
+
show_error=True)