Spaces:
Runtime error
Runtime error
π Fix tests and add freeze
Browse files- Makefile +3 -0
- requirements.txt +33 -0
Makefile
CHANGED
@@ -23,6 +23,9 @@ publish: clean build
|
|
23 |
trace:
|
24 |
langchain-server
|
25 |
|
|
|
|
|
|
|
26 |
help:
|
27 |
@echo "install - install dependencies"
|
28 |
@echo "test - run tests"
|
|
|
23 |
trace:
|
24 |
langchain-server
|
25 |
|
26 |
+
freeze:
|
27 |
+
$(PIP) freeze > requirements.txt
|
28 |
+
|
29 |
help:
|
30 |
@echo "install - install dependencies"
|
31 |
@echo "test - run tests"
|
requirements.txt
CHANGED
@@ -1,5 +1,7 @@
|
|
|
|
1 |
aiohttp==3.8.4
|
2 |
aiosignal==1.3.1
|
|
|
3 |
anyio==3.6.2
|
4 |
appnope==0.1.3
|
5 |
argilla==1.6.0
|
@@ -11,24 +13,36 @@ backoff==2.2.1
|
|
11 |
black==23.3.0
|
12 |
bleach==6.0.0
|
13 |
certifi==2022.12.7
|
|
|
14 |
charset-normalizer==3.1.0
|
15 |
click==8.1.3
|
16 |
comm==0.1.3
|
17 |
commonmark==0.9.1
|
|
|
|
|
|
|
18 |
dataclasses-json==0.5.7
|
19 |
debugpy==1.6.7
|
20 |
decorator==5.1.1
|
21 |
Deprecated==1.2.13
|
22 |
docutils==0.19
|
|
|
23 |
et-xmlfile==1.1.0
|
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
|
31 |
httpx==0.23.3
|
|
|
32 |
idna==3.4
|
33 |
importlib-metadata==6.3.0
|
34 |
iniconfig==2.0.0
|
@@ -36,17 +50,24 @@ ipykernel==6.22.0
|
|
36 |
ipython==8.12.0
|
37 |
jaraco.classes==3.2.3
|
38 |
jedi==0.18.2
|
|
|
39 |
joblib==1.2.0
|
|
|
40 |
jupyter_client==8.1.0
|
41 |
jupyter_core==5.3.0
|
42 |
keyring==23.13.1
|
|
|
43 |
langchain==0.0.137
|
|
|
44 |
lxml==4.9.2
|
45 |
Markdown==3.4.3
|
46 |
markdown-it-py==2.2.0
|
|
|
47 |
marshmallow==3.19.0
|
48 |
marshmallow-enum==1.5.1
|
|
|
49 |
matplotlib-inline==0.1.6
|
|
|
50 |
mdurl==0.1.2
|
51 |
monotonic==1.6
|
52 |
more-itertools==9.1.0
|
@@ -60,10 +81,12 @@ olefile==0.46
|
|
60 |
openai==0.27.4
|
61 |
openapi-schema-pydantic==1.2.4
|
62 |
openpyxl==3.1.2
|
|
|
63 |
packaging==23.0
|
64 |
pandas==1.5.3
|
65 |
parso==0.8.3
|
66 |
pathspec==0.11.1
|
|
|
67 |
pexpect==4.8.0
|
68 |
pickleshare==0.7.5
|
69 |
Pillow==9.5.0
|
@@ -74,14 +97,20 @@ prompt-toolkit==3.0.38
|
|
74 |
psutil==5.9.4
|
75 |
ptyprocess==0.7.0
|
76 |
pure-eval==0.2.2
|
|
|
|
|
77 |
pydantic==1.10.7
|
|
|
78 |
Pygments==2.15.0
|
79 |
pypandoc==1.11
|
|
|
|
|
80 |
pytest==7.3.0
|
81 |
python-dateutil==2.8.2
|
82 |
python-docx==0.8.11
|
83 |
python-dotenv==1.0.0
|
84 |
python-magic==0.4.27
|
|
|
85 |
python-pptx==0.6.21
|
86 |
pytz==2023.3
|
87 |
PyYAML==6.0
|
@@ -92,6 +121,7 @@ requests==2.28.2
|
|
92 |
requests-toolbelt==0.10.1
|
93 |
rfc3986==1.5.0
|
94 |
rich==13.0.1
|
|
|
95 |
six==1.16.0
|
96 |
sniffio==1.3.0
|
97 |
SQLAlchemy==1.4.47
|
@@ -100,17 +130,20 @@ starlette==0.26.1
|
|
100 |
tenacity==8.2.2
|
101 |
tiktoken==0.3.3
|
102 |
tomli==2.0.1
|
|
|
103 |
tornado==6.2
|
104 |
tqdm==4.65.0
|
105 |
traitlets==5.9.0
|
106 |
twine==4.0.2
|
107 |
typing-inspect==0.8.0
|
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
|
115 |
XlsxWriter==3.0.9
|
116 |
yarl==1.8.2
|
|
|
1 |
+
aiofiles==23.1.0
|
2 |
aiohttp==3.8.4
|
3 |
aiosignal==1.3.1
|
4 |
+
altair==4.2.2
|
5 |
anyio==3.6.2
|
6 |
appnope==0.1.3
|
7 |
argilla==1.6.0
|
|
|
13 |
black==23.3.0
|
14 |
bleach==6.0.0
|
15 |
certifi==2022.12.7
|
16 |
+
cffi==1.15.1
|
17 |
charset-normalizer==3.1.0
|
18 |
click==8.1.3
|
19 |
comm==0.1.3
|
20 |
commonmark==0.9.1
|
21 |
+
contourpy==1.0.7
|
22 |
+
cryptography==40.0.2
|
23 |
+
cycler==0.11.0
|
24 |
dataclasses-json==0.5.7
|
25 |
debugpy==1.6.7
|
26 |
decorator==5.1.1
|
27 |
Deprecated==1.2.13
|
28 |
docutils==0.19
|
29 |
+
entrypoints==0.4
|
30 |
et-xmlfile==1.1.0
|
31 |
exceptiongroup==1.1.1
|
32 |
executing==1.2.0
|
33 |
faiss-cpu==1.7.3
|
34 |
fastapi==0.95.1
|
35 |
+
ffmpy==0.3.0
|
36 |
+
filelock==3.11.0
|
37 |
+
fonttools==4.39.3
|
38 |
frozenlist==1.3.3
|
39 |
+
fsspec==2023.4.0
|
40 |
+
gradio==3.26.0
|
41 |
+
gradio_client==0.1.2
|
42 |
h11==0.14.0
|
43 |
httpcore==0.16.3
|
44 |
httpx==0.23.3
|
45 |
+
huggingface-hub==0.13.4
|
46 |
idna==3.4
|
47 |
importlib-metadata==6.3.0
|
48 |
iniconfig==2.0.0
|
|
|
50 |
ipython==8.12.0
|
51 |
jaraco.classes==3.2.3
|
52 |
jedi==0.18.2
|
53 |
+
Jinja2==3.1.2
|
54 |
joblib==1.2.0
|
55 |
+
jsonschema==4.17.3
|
56 |
jupyter_client==8.1.0
|
57 |
jupyter_core==5.3.0
|
58 |
keyring==23.13.1
|
59 |
+
kiwisolver==1.4.4
|
60 |
langchain==0.0.137
|
61 |
+
linkify-it-py==2.0.0
|
62 |
lxml==4.9.2
|
63 |
Markdown==3.4.3
|
64 |
markdown-it-py==2.2.0
|
65 |
+
MarkupSafe==2.1.2
|
66 |
marshmallow==3.19.0
|
67 |
marshmallow-enum==1.5.1
|
68 |
+
matplotlib==3.7.1
|
69 |
matplotlib-inline==0.1.6
|
70 |
+
mdit-py-plugins==0.3.3
|
71 |
mdurl==0.1.2
|
72 |
monotonic==1.6
|
73 |
more-itertools==9.1.0
|
|
|
81 |
openai==0.27.4
|
82 |
openapi-schema-pydantic==1.2.4
|
83 |
openpyxl==3.1.2
|
84 |
+
orjson==3.8.10
|
85 |
packaging==23.0
|
86 |
pandas==1.5.3
|
87 |
parso==0.8.3
|
88 |
pathspec==0.11.1
|
89 |
+
pdfminer.six==20221105
|
90 |
pexpect==4.8.0
|
91 |
pickleshare==0.7.5
|
92 |
Pillow==9.5.0
|
|
|
97 |
psutil==5.9.4
|
98 |
ptyprocess==0.7.0
|
99 |
pure-eval==0.2.2
|
100 |
+
pycparser==2.21
|
101 |
+
pycryptodome==3.17
|
102 |
pydantic==1.10.7
|
103 |
+
pydub==0.25.1
|
104 |
Pygments==2.15.0
|
105 |
pypandoc==1.11
|
106 |
+
pyparsing==3.0.9
|
107 |
+
pyrsistent==0.19.3
|
108 |
pytest==7.3.0
|
109 |
python-dateutil==2.8.2
|
110 |
python-docx==0.8.11
|
111 |
python-dotenv==1.0.0
|
112 |
python-magic==0.4.27
|
113 |
+
python-multipart==0.0.6
|
114 |
python-pptx==0.6.21
|
115 |
pytz==2023.3
|
116 |
PyYAML==6.0
|
|
|
121 |
requests-toolbelt==0.10.1
|
122 |
rfc3986==1.5.0
|
123 |
rich==13.0.1
|
124 |
+
semantic-version==2.10.0
|
125 |
six==1.16.0
|
126 |
sniffio==1.3.0
|
127 |
SQLAlchemy==1.4.47
|
|
|
130 |
tenacity==8.2.2
|
131 |
tiktoken==0.3.3
|
132 |
tomli==2.0.1
|
133 |
+
toolz==0.12.0
|
134 |
tornado==6.2
|
135 |
tqdm==4.65.0
|
136 |
traitlets==5.9.0
|
137 |
twine==4.0.2
|
138 |
typing-inspect==0.8.0
|
139 |
typing_extensions==4.5.0
|
140 |
+
uc-micro-py==1.0.1
|
141 |
unstructured==0.5.11
|
142 |
urllib3==1.26.15
|
143 |
uvicorn==0.21.1
|
144 |
wcwidth==0.2.6
|
145 |
webencodings==0.5.1
|
146 |
+
websockets==11.0.1
|
147 |
wrapt==1.14.1
|
148 |
XlsxWriter==3.0.9
|
149 |
yarl==1.8.2
|