Spaces:
Runtime error
Runtime error
🥸 Minor updates
Browse files- Makefile +1 -1
- requirements.txt +3 -0
- setup.py +1 -0
Makefile
CHANGED
@@ -12,7 +12,7 @@ test:
|
|
12 |
$(PYTHON) -m pytest
|
13 |
|
14 |
clean:
|
15 |
-
rm -rf build dist *.egg-info
|
16 |
|
17 |
build:
|
18 |
$(PYTHON) setup.py sdist bdist_wheel
|
|
|
12 |
$(PYTHON) -m pytest
|
13 |
|
14 |
clean:
|
15 |
+
rm -rf build dist *.egg-info .pytest_cache ./**/__pycache__
|
16 |
|
17 |
build:
|
18 |
$(PYTHON) setup.py sdist bdist_wheel
|
requirements.txt
CHANGED
@@ -24,6 +24,7 @@ et-xmlfile==1.1.0
|
|
24 |
exceptiongroup==1.1.1
|
25 |
executing==1.2.0
|
26 |
faiss-cpu==1.7.3
|
|
|
27 |
frozenlist==1.3.3
|
28 |
h11==0.14.0
|
29 |
httpcore==0.16.3
|
@@ -95,6 +96,7 @@ six==1.16.0
|
|
95 |
sniffio==1.3.0
|
96 |
SQLAlchemy==1.4.47
|
97 |
stack-data==0.6.2
|
|
|
98 |
tenacity==8.2.2
|
99 |
tiktoken==0.3.3
|
100 |
tomli==2.0.1
|
@@ -106,6 +108,7 @@ typing-inspect==0.8.0
|
|
106 |
typing_extensions==4.5.0
|
107 |
unstructured==0.5.11
|
108 |
urllib3==1.26.15
|
|
|
109 |
wcwidth==0.2.6
|
110 |
webencodings==0.5.1
|
111 |
wrapt==1.14.1
|
|
|
24 |
exceptiongroup==1.1.1
|
25 |
executing==1.2.0
|
26 |
faiss-cpu==1.7.3
|
27 |
+
fastapi==0.95.1
|
28 |
frozenlist==1.3.3
|
29 |
h11==0.14.0
|
30 |
httpcore==0.16.3
|
|
|
96 |
sniffio==1.3.0
|
97 |
SQLAlchemy==1.4.47
|
98 |
stack-data==0.6.2
|
99 |
+
starlette==0.26.1
|
100 |
tenacity==8.2.2
|
101 |
tiktoken==0.3.3
|
102 |
tomli==2.0.1
|
|
|
108 |
typing_extensions==4.5.0
|
109 |
unstructured==0.5.11
|
110 |
urllib3==1.26.15
|
111 |
+
uvicorn==0.21.1
|
112 |
wcwidth==0.2.6
|
113 |
webencodings==0.5.1
|
114 |
wrapt==1.14.1
|
setup.py
CHANGED
@@ -12,6 +12,7 @@ setup(
|
|
12 |
"unstructured",
|
13 |
"fastapi",
|
14 |
"faiss-cpu",
|
|
|
15 |
],
|
16 |
author="Megaklis Vasilakis",
|
17 |
author_email="megaklis.vasilakis@gmail.com",
|
|
|
12 |
"unstructured",
|
13 |
"fastapi",
|
14 |
"faiss-cpu",
|
15 |
+
"fastapi",
|
16 |
],
|
17 |
author="Megaklis Vasilakis",
|
18 |
author_email="megaklis.vasilakis@gmail.com",
|