File size: 9,359 Bytes
7a8b33f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
#
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
#    pip-compile requirements.in
#
aiofiles==23.2.1
    # via gradio
aiohttp==3.9.3
    # via
    #   cohere
    #   langchain
    #   langchain-community
aiosignal==1.3.1
    # via aiohttp
altair==5.2.0
    # via gradio
annotated-types==0.6.0
    # via pydantic
anyio==4.2.0
    # via
    #   httpx
    #   langchain-core
    #   openai
    #   starlette
asttokens==2.4.1
    # via stack-data
attrs==23.2.0
    # via
    #   aiohttp
    #   jsonschema
    #   referencing
authlib==1.3.0
    # via weaviate-client
backoff==2.2.1
    # via cohere
beartype==0.17.2
    # via zsvision
beautifulsoup4==4.12.3
    # via
    #   bs4
    #   feedfinder2
    #   newspaper3k
bs4==0.0.2
    # via -r requirements.in
build==1.0.3
    # via pip-tools
cachetools==5.3.2
    # via google-auth
certifi==2024.2.2
    # via
    #   httpcore
    #   httpx
    #   requests
cffi==1.16.0
    # via cryptography
charset-normalizer==3.3.2
    # via requests
click==8.1.7
    # via
    #   nltk
    #   pip-tools
    #   typer
    #   uvicorn
cohere==4.47
    # via -r requirements.in
colorama==0.4.6
    # via typer
contourpy==1.2.0
    # via matplotlib
cryptography==42.0.2
    # via authlib
cssselect==1.2.0
    # via newspaper3k
cycler==0.12.1
    # via matplotlib
dataclasses-json==0.6.4
    # via
    #   langchain
    #   langchain-community
decorator==5.1.1
    # via
    #   ipdb
    #   ipython
distro==1.9.0
    # via openai
executing==2.0.1
    # via stack-data
faiss-cpu==1.7.4
    # via -r requirements.in
fake-useragent==1.4.0
    # via -r requirements.in
fastapi==0.109.2
    # via gradio
fastavro==1.9.4
    # via cohere
feedfinder2==0.0.4
    # via newspaper3k
feedparser==6.0.11
    # via newspaper3k
ffmpy==0.3.2
    # via gradio
filelock==3.13.1
    # via
    #   huggingface-hub
    #   tldextract
fonttools==4.48.1
    # via matplotlib
frozenlist==1.4.1
    # via
    #   aiohttp
    #   aiosignal
fsspec==2024.2.0
    # via
    #   gradio-client
    #   huggingface-hub
google-api-core==2.17.0
    # via google-api-python-client
google-api-python-client==2.118.0
    # via -r requirements.in
google-auth==2.27.0
    # via
    #   google-api-core
    #   google-api-python-client
    #   google-auth-httplib2
google-auth-httplib2==0.2.0
    # via google-api-python-client
googleapis-common-protos==1.62.0
    # via google-api-core
gradio==4.19.0
    # via -r requirements.in
gradio-client==0.10.0
    # via gradio
grpcio==1.60.1
    # via
    #   grpcio-health-checking
    #   grpcio-tools
    #   weaviate-client
grpcio-health-checking==1.60.1
    # via weaviate-client
grpcio-tools==1.60.1
    # via weaviate-client
h11==0.14.0
    # via
    #   httpcore
    #   uvicorn
h5py==3.10.0
    # via hickle
hickle==5.0.2
    # via zsvision
httpcore==1.0.2
    # via httpx
httplib2==0.22.0
    # via
    #   google-api-python-client
    #   google-auth-httplib2
httpx==0.26.0
    # via
    #   gradio
    #   gradio-client
    #   openai
    #   weaviate-client
huggingface-hub==0.20.3
    # via
    #   gradio
    #   gradio-client
humanize==4.9.0
    # via zsvision
idna==3.6
    # via
    #   anyio
    #   httpx
    #   requests
    #   tldextract
    #   yarl
importlib-metadata==6.11.0
    # via cohere
importlib-resources==6.1.1
    # via gradio
ipdb==0.13.13
    # via -r requirements.in
ipython==8.21.0
    # via ipdb
jedi==0.19.1
    # via ipython
jieba3k==0.35.1
    # via newspaper3k
jinja2==3.1.3
    # via
    #   altair
    #   gradio
joblib==1.3.2
    # via nltk
json5==0.9.14
    # via -r requirements.in
jsonpatch==1.33
    # via
    #   langchain
    #   langchain-core
jsonpointer==2.4
    # via jsonpatch
jsonschema==4.21.1
    # via altair
jsonschema-specifications==2023.12.1
    # via jsonschema
kiwisolver==1.4.5
    # via matplotlib
langchain==0.1.7
    # via -r requirements.in
langchain-community==0.0.20
    # via
    #   -r requirements.in
    #   langchain
langchain-core==0.1.23
    # via
    #   langchain
    #   langchain-community
    #   langchain-openai
langchain-openai==0.0.6
    # via -r requirements.in
langsmith==0.0.87
    # via
    #   langchain
    #   langchain-community
    #   langchain-core
lxml==5.1.0
    # via newspaper3k
markdown-it-py==3.0.0
    # via rich
markupsafe==2.1.5
    # via
    #   gradio
    #   jinja2
marshmallow==3.20.2
    # via dataclasses-json
matplotlib==3.8.2
    # via
    #   gradio
    #   zsvision
matplotlib-inline==0.1.6
    # via ipython
mdurl==0.1.2
    # via markdown-it-py
mergedeep==1.3.4
    # via zsvision
msgpack==1.0.7
    # via
    #   msgpack-numpy
    #   zsvision
msgpack-numpy==0.4.8
    # via zsvision
multidict==6.0.5
    # via
    #   aiohttp
    #   yarl
mypy-extensions==1.0.0
    # via typing-inspect
newspaper3k==0.2.8
    # via -r requirements.in
nltk==3.8.1
    # via newspaper3k
numpy==1.26.4
    # via
    #   altair
    #   contourpy
    #   gradio
    #   h5py
    #   hickle
    #   langchain
    #   langchain-community
    #   langchain-openai
    #   matplotlib
    #   msgpack-numpy
    #   pandas
    #   scipy
    #   zsvision
openai==1.12.0
    # via
    #   -r requirements.in
    #   langchain-openai
orjson==3.9.14
    # via gradio
packaging==23.2
    # via
    #   altair
    #   build
    #   gradio
    #   gradio-client
    #   huggingface-hub
    #   langchain-core
    #   marshmallow
    #   matplotlib
pandas==2.2.0
    # via
    #   altair
    #   gradio
parso==0.8.3
    # via jedi
pexpect==4.9.0
    # via ipython
pillow==10.2.0
    # via
    #   gradio
    #   matplotlib
    #   newspaper3k
pip-tools==7.3.0
    # via -r requirements.in
prompt-toolkit==3.0.43
    # via ipython
protobuf==4.25.2
    # via
    #   google-api-core
    #   googleapis-common-protos
    #   grpcio-health-checking
    #   grpcio-tools
ptyprocess==0.7.0
    # via pexpect
pure-eval==0.2.2
    # via stack-data
pyasn1==0.5.1
    # via
    #   pyasn1-modules
    #   rsa
pyasn1-modules==0.3.0
    # via google-auth
pycparser==2.21
    # via cffi
pydantic==2.6.1
    # via
    #   fastapi
    #   gradio
    #   langchain
    #   langchain-core
    #   langsmith
    #   openai
    #   weaviate-client
pydantic-core==2.16.2
    # via pydantic
pydub==0.25.1
    # via gradio
pygments==2.17.2
    # via
    #   ipython
    #   rich
pyparsing==3.1.1
    # via
    #   httplib2
    #   matplotlib
pyproject-hooks==1.0.0
    # via build
python-dateutil==2.8.2
    # via
    #   matplotlib
    #   newspaper3k
    #   pandas
python-dotenv==1.0.1
    # via -r requirements.in
python-multipart==0.0.9
    # via gradio
pytz==2024.1
    # via pandas
pyyaml==6.0.1
    # via
    #   gradio
    #   huggingface-hub
    #   langchain
    #   langchain-community
    #   langchain-core
    #   newspaper3k
    #   zsvision
referencing==0.33.0
    # via
    #   jsonschema
    #   jsonschema-specifications
regex==2023.12.25
    # via
    #   nltk
    #   tiktoken
requests==2.31.0
    # via
    #   cohere
    #   feedfinder2
    #   google-api-core
    #   huggingface-hub
    #   langchain
    #   langchain-community
    #   langchain-core
    #   langsmith
    #   newspaper3k
    #   requests-file
    #   tiktoken
    #   tldextract
    #   weaviate-client
requests-file==2.0.0
    # via tldextract
rich==13.7.0
    # via typer
rpds-py==0.18.0
    # via
    #   jsonschema
    #   referencing
rsa==4.9
    # via google-auth
ruff==0.2.1
    # via gradio
scipy==1.12.0
    # via zsvision
semantic-version==2.10.0
    # via gradio
sgmllib3k==1.0.0
    # via feedparser
shellingham==1.5.4
    # via typer
six==1.16.0
    # via
    #   asttokens
    #   feedfinder2
    #   python-dateutil
sniffio==1.3.0
    # via
    #   anyio
    #   httpx
    #   openai
soupsieve==2.5
    # via beautifulsoup4
sqlalchemy==2.0.27
    # via
    #   langchain
    #   langchain-community
stack-data==0.6.3
    # via ipython
starlette==0.36.3
    # via fastapi
tenacity==8.2.3
    # via
    #   langchain
    #   langchain-community
    #   langchain-core
tiktoken==0.6.0
    # via
    #   -r requirements.in
    #   langchain-openai
tinysegmenter==0.3
    # via newspaper3k
tldextract==5.1.1
    # via newspaper3k
tomlkit==0.12.0
    # via gradio
toolz==0.12.1
    # via altair
tqdm==4.66.2
    # via
    #   huggingface-hub
    #   nltk
    #   openai
traitlets==5.14.1
    # via
    #   ipython
    #   matplotlib-inline
typeguard==4.1.5
    # via zsvision
typer[all]==0.9.0
    # via gradio
typing-extensions==4.9.0
    # via
    #   fastapi
    #   gradio
    #   gradio-client
    #   huggingface-hub
    #   openai
    #   pydantic
    #   pydantic-core
    #   sqlalchemy
    #   typeguard
    #   typer
    #   typing-inspect
typing-inspect==0.9.0
    # via dataclasses-json
tzdata==2024.1
    # via pandas
uritemplate==4.1.1
    # via google-api-python-client
urllib3==2.2.0
    # via
    #   cohere
    #   requests
uvicorn==0.27.1
    # via gradio
validators==0.22.0
    # via weaviate-client
wcwidth==0.2.13
    # via prompt-toolkit
weaviate-client==4.4.4
    # via -r requirements.in
websockets==11.0.3
    # via gradio-client
wheel==0.42.0
    # via pip-tools
yarl==1.9.4
    # via aiohttp
zipp==3.17.0
    # via importlib-metadata
zsvision==0.7.12
    # via -r requirements.in

# The following packages are considered to be unsafe in a requirements file:
# pip
# setuptools