Spaces:
Sleeping
Sleeping
Commit
·
333a1f9
1
Parent(s):
10493d1
Refactor requirements.txt to remove specific version constraints for dependencies, allowing for more flexibility in package management.
Browse files- .gitignore +1 -42
- requirements.txt +6 -6
.gitignore
CHANGED
@@ -1,43 +1,2 @@
|
|
1 |
-
# Python
|
2 |
-
__pycache__/
|
3 |
-
*.py[cod]
|
4 |
-
*$py.class
|
5 |
-
*.so
|
6 |
-
.Python
|
7 |
-
env/
|
8 |
-
build/
|
9 |
-
develop-eggs/
|
10 |
-
dist/
|
11 |
-
downloads/
|
12 |
-
eggs/
|
13 |
-
.eggs/
|
14 |
-
lib/
|
15 |
-
lib64/
|
16 |
-
parts/
|
17 |
-
sdist/
|
18 |
-
var/
|
19 |
-
wheels/
|
20 |
-
*.egg-info/
|
21 |
-
.installed.cfg
|
22 |
-
*.egg
|
23 |
-
|
24 |
-
# Environment variables
|
25 |
.env
|
26 |
-
|
27 |
-
# Virtual Environment
|
28 |
-
venv/
|
29 |
-
ENV/
|
30 |
-
|
31 |
-
# IDE
|
32 |
-
.idea/
|
33 |
-
.vscode/
|
34 |
-
*.swp
|
35 |
-
*.swo
|
36 |
-
|
37 |
-
# Streamlit
|
38 |
-
.streamlit/
|
39 |
-
|
40 |
-
# Model files
|
41 |
-
*.pt
|
42 |
-
*.pth
|
43 |
-
*.bin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.env
|
2 |
+
.venv
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
# add requirements
|
2 |
-
streamlit
|
3 |
-
python-dotenv
|
4 |
-
langchain
|
5 |
-
transformers
|
6 |
-
torch
|
7 |
-
PyPDF2
|
8 |
|
|
|
1 |
# add requirements
|
2 |
+
streamlit
|
3 |
+
python-dotenv
|
4 |
+
langchain
|
5 |
+
transformers
|
6 |
+
torch
|
7 |
+
PyPDF2
|
8 |
|