Spaces:
Sleeping
Sleeping
fix: correct URL list formatting and fix main function call indentation
Browse files- .gitignore +7 -0
- app.py +2 -2
.gitignore
CHANGED
@@ -4,3 +4,10 @@
|
|
4 |
venv
|
5 |
.streamlit/secrets.toml
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
venv
|
5 |
.streamlit/secrets.toml
|
6 |
|
7 |
+
# Keep the folders but ignore their contents except .gitkeep
|
8 |
+
chat_history/*
|
9 |
+
!chat_history/.gitkeep
|
10 |
+
|
11 |
+
vector_store/*
|
12 |
+
!vector_store/.gitkeep
|
13 |
+
|
app.py
CHANGED
@@ -66,7 +66,7 @@ urls = [
|
|
66 |
"https://status.law/careers",
|
67 |
"https://status.law/challenging-sanctions",
|
68 |
"https://status.law/tariffs-for-services-against-extradition-en",
|
69 |
-
"https://status.law/law-firm-contact-legal-protection"
|
70 |
"https://status.law/cross-border-banking-legal-issues",
|
71 |
"https://status.law/extradition-defense",
|
72 |
"https://status.law/international-prosecution-protection",
|
@@ -256,4 +256,4 @@ def main():
|
|
256 |
})
|
257 |
|
258 |
if __name__ == "__main__":
|
259 |
-
|
|
|
66 |
"https://status.law/careers",
|
67 |
"https://status.law/challenging-sanctions",
|
68 |
"https://status.law/tariffs-for-services-against-extradition-en",
|
69 |
+
"https://status.law/law-firm-contact-legal-protection",
|
70 |
"https://status.law/cross-border-banking-legal-issues",
|
71 |
"https://status.law/extradition-defense",
|
72 |
"https://status.law/international-prosecution-protection",
|
|
|
256 |
})
|
257 |
|
258 |
if __name__ == "__main__":
|
259 |
+
main()
|