-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.txt
executable file
·1267 lines (1267 loc) · 25.9 KB
/
requirements.txt
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
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file was autogenerated by uv via the following command:
# uv pip compile pyproject.toml -o requirements.txt
absl-py==2.1.0
# via gdm-concordia
accelerate==1.2.1
# via casper (pyproject.toml)
aiofiles==23.2.1
# via runware
aiohappyeyeballs==2.4.4
# via aiohttp
aiohttp==3.11.8
# via
# auth0-python
# datasets
# fsspec
# huggingface-hub
# instructor
# langchain
# langchain-community
# litellm
# llama-index-core
# scrapegraph-py
aiosignal==1.3.2
# via aiohttp
aiosqlite==0.20.0
# via langgraph-checkpoint-sqlite
alembic==1.14.0
# via embedchain
annotated-types==0.7.0
# via pydantic
anyio==4.7.0
# via
# httpx
# openai
# starlette
# watchfiles
appdirs==1.4.4
# via crewai
apscheduler==3.10.4
# via python-telegram-bot
arxiv==2.1.3
# via casper (pyproject.toml)
asgiref==3.8.1
# via opentelemetry-instrumentation-asgi
asttokens==3.0.0
# via stack-data
attrs==24.3.0
# via
# aiohttp
# jsonschema
# outcome
# referencing
# trio
auth0-python==4.7.2
# via crewai
backoff==2.2.1
# via posthog
bcrypt==4.2.0
# via chromadb
beautifulsoup4==4.12.3
# via
# crewai-tools
# embedchain
# llama-index-readers-file
# scrapegraph-py
bitsandbytes==0.45.0
# via casper (pyproject.toml)
black==24.10.0
# via casper (pyproject.toml)
blinker==1.9.0
# via crewai
boto3==1.35.53
# via gdm-concordia
botocore==1.35.93
# via
# boto3
# s3transfer
build==1.2.2.post1
# via chromadb
cachetools==5.5.0
# via
# google-auth
# gptcache
certifi==2024.12.14
# via
# httpcore
# httpx
# kubernetes
# llama-cloud
# requests
# selenium
cffi==1.17.1
# via cryptography
charset-normalizer==3.4.1
# via
# pdfminer-six
# requests
chroma-hnswlib==0.7.6
# via chromadb
chromadb==0.5.23
# via
# crewai
# crewai-tools
# embedchain
# llama-index-vector-stores-chroma
click==8.1.8
# via
# black
# crewai
# duckduckgo-search
# litellm
# llama-parse
# nltk
# rich-toolkit
# typer
# uvicorn
cohere==5.13.5
# via
# embedchain
# langchain-cohere
coloredlogs==15.0.1
# via onnxruntime
contourpy==1.3.1
# via matplotlib
coverage==7.6.10
# via pytest-cov
crewai==0.95.0
# via
# casper (pyproject.toml)
# crewai-tools
crewai-tools==0.25.5
# via crewai
cryptography==43.0.3
# via
# auth0-python
# pdfminer-six
cycler==0.12.1
# via matplotlib
dataclasses-json==0.6.7
# via
# langchain-community
# llama-index-core
datasets==3.2.0
# via casper (pyproject.toml)
decorator==5.1.1
# via
# ipython
# retry
deprecated==1.2.15
# via
# llama-index-core
# opentelemetry-api
# opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http
# opentelemetry-semantic-conventions
deprecation==2.1.0
# via lancedb
diffusers==0.32.0
# via casper (pyproject.toml)
dill==0.3.8
# via
# datasets
# multiprocess
dirtyjson==1.0.8
# via llama-index-core
diskcache==5.6.3
# via llama-cpp-python
distro==1.9.0
# via openai
dnspython==2.7.0
# via email-validator
docker==7.1.0
# via crewai-tools
docstring-parser==0.16
# via
# google-cloud-aiplatform
# instructor
docx2txt==0.8
# via crewai-tools
duckduckgo-search==7.2.0
# via casper (pyproject.toml)
durationpy==0.9
# via kubernetes
email-validator==2.2.0
# via fastapi
embedchain==0.1.126
# via crewai-tools
et-xmlfile==2.0.0
# via openpyxl
eval-type-backport==0.2.2
# via mistralai
execnet==2.1.1
# via pytest-xdist
executing==2.1.0
# via stack-data
fastapi==0.111.0
# via chromadb
fastapi-cli==0.0.7
# via fastapi
fastavro==1.10.0
# via cohere
feedparser==6.0.11
# via arxiv
filelock==3.16.1
# via
# datasets
# diffusers
# huggingface-hub
# torch
# transformers
# triton
filetype==1.2.0
# via llama-index-core
flatbuffers==24.12.23
# via onnxruntime
fonttools==4.55.3
# via matplotlib
frozenlist==1.5.0
# via
# aiohttp
# aiosignal
fsspec==2024.9.0
# via
# datasets
# huggingface-hub
# llama-index-core
# torch
gdm-concordia==1.8.10
# via casper (pyproject.toml)
google-ai-generativelanguage==0.6.6
# via google-generativeai
google-api-core==2.24.0
# via
# google-ai-generativelanguage
# google-api-python-client
# google-cloud-aiplatform
# google-cloud-bigquery
# google-cloud-core
# google-cloud-resource-manager
# google-cloud-secret-manager
# google-cloud-storage
# google-generativeai
google-api-python-client==2.157.0
# via google-generativeai
google-auth==2.37.0
# via
# google-ai-generativelanguage
# google-api-core
# google-api-python-client
# google-auth-httplib2
# google-cloud-aiplatform
# google-cloud-bigquery
# google-cloud-core
# google-cloud-resource-manager
# google-cloud-storage
# google-generativeai
# kubernetes
google-auth-httplib2==0.2.0
# via google-api-python-client
google-cloud-aiplatform==1.75.0
# via
# embedchain
# gdm-concordia
google-cloud-bigquery==3.27.0
# via google-cloud-aiplatform
google-cloud-core==2.4.1
# via
# google-cloud-bigquery
# google-cloud-storage
google-cloud-resource-manager==1.14.0
# via google-cloud-aiplatform
google-cloud-secret-manager==2.17.0
# via casper (pyproject.toml)
google-cloud-storage==2.19.0
# via google-cloud-aiplatform
google-crc32c==1.6.0
# via
# google-cloud-storage
# google-resumable-media
google-generativeai==0.7.2
# via gdm-concordia
google-resumable-media==2.7.2
# via
# google-cloud-bigquery
# google-cloud-storage
googleapis-common-protos==1.63.2
# via
# google-api-core
# grpc-google-iam-v1
# grpcio-status
# opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http
gptcache==0.1.44
# via embedchain
greenlet==3.1.1
# via sqlalchemy
grpc-google-iam-v1==0.13.1
# via
# google-cloud-resource-manager
# google-cloud-secret-manager
grpcio==1.67.1
# via
# chromadb
# google-api-core
# googleapis-common-protos
# grpc-google-iam-v1
# grpcio-status
# grpcio-tools
# opentelemetry-exporter-otlp-proto-grpc
# qdrant-client
grpcio-status==1.62.3
# via google-api-core
grpcio-tools==1.62.3
# via qdrant-client
h11==0.14.0
# via
# httpcore
# uvicorn
# wsproto
h2==4.1.0
# via httpx
hpack==4.0.0
# via h2
html2text==2024.2.26
# via llama-hub
httpcore==1.0.7
# via httpx
httplib2==0.22.0
# via
# google-api-python-client
# google-auth-httplib2
httptools==0.6.4
# via uvicorn
httpx==0.27.2
# via
# chromadb
# cohere
# fastapi
# langgraph-sdk
# langsmith
# litellm
# llama-cloud
# llama-index-core
# mistralai
# ollama
# openai
# python-telegram-bot
# qdrant-client
httpx-sse==0.4.0
# via
# cohere
# langchain-community
huggingface-hub==0.27.0
# via
# accelerate
# datasets
# diffusers
# llama-index-embeddings-huggingface
# sentence-transformers
# tokenizers
# transformers
humanfriendly==10.0
# via coloredlogs
hyperframe==6.0.1
# via h2
idna==3.10
# via
# anyio
# email-validator
# httpx
# requests
# trio
# yarl
importlib-metadata==8.4.0
# via
# diffusers
# litellm
# opentelemetry-api
importlib-resources==6.5.2
# via chromadb
iniconfig==2.0.0
# via pytest
instructor==1.7.2
# via crewai
ipython==8.31.0
# via
# gdm-concordia
# pyvis
isort==5.13.2
# via casper (pyproject.toml)
jedi==0.19.2
# via ipython
jinja2==3.1.5
# via
# fastapi
# gdm-concordia
# instructor
# litellm
# llama-cpp-python
# pyvis
# torch
jiter==0.6.1
# via
# instructor
# openai
jmespath==1.0.1
# via
# boto3
# botocore
joblib==1.4.2
# via
# nltk
# scikit-learn
json-repair==0.35.0
# via crewai
jsonpatch==1.33
# via langchain-core
jsonpath-python==1.0.6
# via mistralai
jsonpickle==4.0.1
# via pyvis
jsonpointer==3.0.0
# via jsonpatch
jsonref==1.1.0
# via crewai
jsonschema==4.23.0
# via litellm
jsonschema-specifications==2024.10.1
# via jsonschema
kiwisolver==1.4.8
# via matplotlib
kubernetes==31.0.0
# via chromadb
lancedb==0.17.0
# via crewai-tools
langchain==0.3.7
# via
# casper (pyproject.toml)
# embedchain
# langchain-community
langchain-cohere==0.3.4
# via embedchain
langchain-community==0.3.7
# via
# embedchain
# gdm-concordia
# langchain-experimental
langchain-core==0.3.28
# via
# langchain
# langchain-cohere
# langchain-community
# langchain-experimental
# langchain-openai
# langchain-text-splitters
# langgraph
# langgraph-checkpoint
langchain-experimental==0.3.4
# via langchain-cohere
langchain-openai==0.2.14
# via embedchain
langchain-text-splitters==0.3.4
# via langchain
langgraph==0.2.60
# via casper (pyproject.toml)
langgraph-checkpoint==2.0.9
# via
# langgraph
# langgraph-checkpoint-sqlite
langgraph-checkpoint-sqlite==2.0.1
# via casper (pyproject.toml)
langgraph-sdk==0.1.48
# via langgraph
langsmith==0.1.147
# via
# embedchain
# langchain
# langchain-community
# langchain-core
litellm==1.57.1
# via crewai
llama-cloud==0.1.7
# via llama-index-indices-managed-llama-cloud
llama-cpp-python==0.2.90
# via llama-index-llms-llama-cpp
llama-hub==0.0.79.post1
# via casper (pyproject.toml)
llama-index==0.12.10
# via
# casper (pyproject.toml)
# llama-hub
llama-index-agent-openai==0.4.1
# via
# llama-index
# llama-index-program-openai
llama-index-cli==0.4.0
# via llama-index
llama-index-core==0.12.10.post1
# via
# llama-index
# llama-index-agent-openai
# llama-index-cli
# llama-index-embeddings-huggingface
# llama-index-embeddings-openai
# llama-index-indices-managed-llama-cloud
# llama-index-llms-llama-cpp
# llama-index-llms-openai
# llama-index-multi-modal-llms-openai
# llama-index-program-openai
# llama-index-question-gen-openai
# llama-index-readers-file
# llama-index-readers-llama-parse
# llama-index-vector-stores-chroma
# llama-parse
llama-index-embeddings-huggingface==0.4.0
# via casper (pyproject.toml)
llama-index-embeddings-openai==0.3.1
# via
# llama-index
# llama-index-cli
llama-index-indices-managed-llama-cloud==0.6.3
# via llama-index
llama-index-llms-llama-cpp==0.3.0
# via casper (pyproject.toml)
llama-index-llms-openai==0.3.12
# via
# llama-index
# llama-index-agent-openai
# llama-index-cli
# llama-index-multi-modal-llms-openai
# llama-index-program-openai
# llama-index-question-gen-openai
llama-index-multi-modal-llms-openai==0.4.2
# via llama-index
llama-index-program-openai==0.3.1
# via
# llama-index
# llama-index-question-gen-openai
llama-index-question-gen-openai==0.3.0
# via llama-index
llama-index-readers-file==0.4.2
# via llama-index
llama-index-readers-llama-parse==0.4.0
# via llama-index
llama-index-vector-stores-chroma==0.4.1
# via casper (pyproject.toml)
llama-parse==0.5.19
# via llama-index-readers-llama-parse
lxml==5.3.0
# via duckduckgo-search
mako==1.3.8
# via alembic
markdown-it-py==3.0.0
# via rich
markupsafe==3.0.2
# via
# jinja2
# mako
marshmallow==3.23.2
# via dataclasses-json
matplotlib==3.10.0
# via gdm-concordia
matplotlib-inline==0.1.7
# via ipython
mdurl==0.1.2
# via markdown-it-py
mem0ai==0.1.40
# via embedchain
mistralai==1.2.6
# via gdm-concordia
mmh3==5.0.1
# via chromadb
monotonic==1.6
# via posthog
mpmath==1.3.0
# via sympy
msgpack==1.1.0
# via langgraph-checkpoint
multidict==6.1.0
# via
# aiohttp
# yarl
multiprocess==0.70.16
# via datasets
mypy-extensions==1.0.0
# via
# black
# typing-inspect
nest-asyncio==1.6.0
# via llama-index-core
networkx==3.4.2
# via
# llama-index-core
# pyvis
# torch
nltk==3.9.1
# via
# llama-index
# llama-index-core
nodeenv==1.9.1
# via pyright
numpy==1.26.4
# via
# accelerate
# bitsandbytes
# chroma-hnswlib
# chromadb
# contourpy
# datasets
# diffusers
# gdm-concordia
# gptcache
# langchain
# langchain-community
# llama-cpp-python
# llama-index-core
# matplotlib
# onnxruntime
# pandas
# pylance
# qdrant-client
# scikit-learn
# scipy
# shapely
# transformers
nvidia-cublas-cu12==12.1.3.1
# via
# nvidia-cudnn-cu12
# nvidia-cusolver-cu12
# torch
nvidia-cuda-cupti-cu12==12.1.105
# via torch
nvidia-cuda-nvrtc-cu12==12.1.105
# via torch
nvidia-cuda-runtime-cu12==12.1.105
# via torch
nvidia-cudnn-cu12==8.9.2.26
# via torch
nvidia-cufft-cu12==11.0.2.54
# via torch
nvidia-curand-cu12==10.3.2.106
# via torch
nvidia-cusolver-cu12==11.4.5.107
# via torch
nvidia-cusparse-cu12==12.1.0.106
# via
# nvidia-cusolver-cu12
# torch
nvidia-nccl-cu12==2.20.5
# via torch
nvidia-nvjitlink-cu12==12.4.127
# via
# nvidia-cusolver-cu12
# nvidia-cusparse-cu12
nvidia-nvtx-cu12==12.1.105
# via torch
oauthlib==3.2.2
# via
# kubernetes
# requests-oauthlib
ollama==0.4.5
# via gdm-concordia
onnxruntime==1.20.1
# via chromadb
openai==1.58.1
# via
# crewai
# crewai-tools
# embedchain
# gdm-concordia
# instructor
# langchain-openai
# litellm
# llama-index-agent-openai
# llama-index-embeddings-openai
# llama-index-llms-openai
# mem0ai
openpyxl==3.1.5
# via crewai
opentelemetry-api==1.27.0
# via
# chromadb
# crewai
# opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http
# opentelemetry-instrumentation
# opentelemetry-instrumentation-asgi
# opentelemetry-instrumentation-fastapi
# opentelemetry-sdk
# opentelemetry-semantic-conventions
opentelemetry-exporter-otlp-proto-common==1.27.0
# via
# opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http
opentelemetry-exporter-otlp-proto-grpc==1.27.0
# via chromadb
opentelemetry-exporter-otlp-proto-http==1.27.0
# via crewai
opentelemetry-instrumentation==0.48b0
# via
# opentelemetry-instrumentation-asgi
# opentelemetry-instrumentation-fastapi
opentelemetry-instrumentation-asgi==0.48b0
# via opentelemetry-instrumentation-fastapi
opentelemetry-instrumentation-fastapi==0.48b0
# via chromadb
opentelemetry-proto==1.27.0
# via
# opentelemetry-exporter-otlp-proto-common
# opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http
opentelemetry-sdk==1.27.0
# via
# chromadb
# crewai
# opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http
opentelemetry-semantic-conventions==0.48b0
# via
# opentelemetry-instrumentation-asgi
# opentelemetry-instrumentation-fastapi
# opentelemetry-sdk
opentelemetry-util-http==0.48b0
# via
# opentelemetry-instrumentation-asgi
# opentelemetry-instrumentation-fastapi
orjson==3.10.12
# via
# chromadb
# fastapi
# langgraph-sdk
# langsmith
outcome==1.3.0.post0
# via trio
overrides==7.7.0
# via
# chromadb
# lancedb
packaging==23.2
# via
# accelerate
# black
# build
# datasets
# deprecation
# google-cloud-aiplatform
# google-cloud-bigquery
# huggingface-hub
# lancedb
# langchain-core
# marshmallow
# matplotlib
# onnxruntime
# pytest
# transformers
pandas==2.2.3
# via
# datasets
# gdm-concordia
# langchain-cohere
# llama-index-readers-file
parameterized==0.9.0
# via cohere
parso==0.8.4
# via jedi
pathspec==0.12.1
# via black
pdfminer-six==20231228
# via pdfplumber
pdfplumber==0.11.5
# via crewai
pexpect==4.9.0
# via ipython
pillow==11.0.0
# via
# diffusers
# llama-index-core
# matplotlib
# pdfplumber
# sentence-transformers
platformdirs==4.3.6
# via black
pluggy==1.5.0
# via pytest
portalocker==2.10.1
# via qdrant-client
posthog==3.7.5
# via
# chromadb
# embedchain
# mem0ai
primp==0.9.3
# via duckduckgo-search
prompt-toolkit==3.0.48
# via ipython
propcache==0.2.1
# via
# aiohttp
# yarl
proto-plus==1.25.0
# via
# google-ai-generativelanguage
# google-api-core
# google-cloud-aiplatform
# google-cloud-resource-manager
# google-cloud-secret-manager
protobuf==4.25.5
# via
# google-ai-generativelanguage
# google-api-core
# google-cloud-aiplatform
# google-cloud-resource-manager
# google-cloud-secret-manager
# google-generativeai
# googleapis-common-protos
# grpc-google-iam-v1
# grpcio-status
# grpcio-tools
# onnxruntime
# opentelemetry-proto
# proto-plus
psutil==6.1.1
# via
# accelerate
# llama-hub
ptyprocess==0.7.0
# via pexpect
pure-eval==0.2.3
# via stack-data
py==1.11.0
# via
# casper (pyproject.toml)
# retry
pyaml==23.12.0
# via llama-hub
pyarrow==18.1.0
# via
# datasets
# pylance
pyasn1==0.6.1
# via
# pyasn1-modules
# rsa
pyasn1-modules==0.4.1
# via google-auth
pycparser==2.22
# via cffi
pydantic==2.10.4
# via
# chromadb
# cohere
# crewai
# crewai-tools
# fastapi
# google-cloud-aiplatform
# google-generativeai
# instructor
# lancedb
# langchain
# langchain-cohere
# langchain-core
# langsmith
# litellm
# llama-cloud
# llama-index-core
# llama-parse
# mem0ai
# mistralai
# ollama
# openai
# pydantic-settings
# qdrant-client
# scrapegraph-py
pydantic-core==2.27.2
# via
# cohere
# instructor
# pydantic
pydantic-settings==2.7.1
# via langchain-community
pygments==2.18.0
# via
# ipython
# rich
pyjwt==2.10.1
# via auth0-python
pylance==0.20.0
# via lancedb
pyparsing==3.2.0
# via
# httplib2
# matplotlib
pypdf==5.1.0
# via
# embedchain
# llama-index-readers-file
pypdfium2==4.30.1
# via pdfplumber
pypika==0.48.9
# via chromadb
pyproject-hooks==1.2.0
# via build
pyright==1.1.391
# via crewai-tools
pysbd==0.3.4
# via embedchain
pysocks==1.7.1
# via urllib3
pytest==8.2.0
# via
# casper (pyproject.toml)
# crewai-tools
# pytest-cov
# pytest-xdist
pytest-cov==4.1.0
# via casper (pyproject.toml)
pytest-xdist==3.5.0
# via casper (pyproject.toml)
python-dateutil==2.9.0.post0
# via
# botocore
# gdm-concordia
# google-cloud-bigquery
# kubernetes
# matplotlib
# mistralai
# pandas
# posthog
python-dotenv==1.0.1
# via
# casper (pyproject.toml)
# crewai
# embedchain
# litellm
# pydantic-settings
# runware
# scrapegraph-py
# uvicorn
python-multipart==0.0.18
# via fastapi
python-telegram-bot==21.9
# via casper (pyproject.toml)
pytube==15.0.0
# via crewai-tools
pytz==2024.2
# via
# apscheduler
# mem0ai
# pandas
# python-telegram-bot
pyvis==0.3.2
# via crewai
pyyaml==6.0.2
# via
# accelerate
# chromadb
# datasets
# huggingface-hub
# kubernetes
# langchain
# langchain-community
# langchain-core
# llama-index-core
# pyaml
# transformers
# uvicorn
qdrant-client==1.12.2
# via mem0ai
reactivex==4.0.4
# via gdm-concordia
referencing==0.35.1
# via
# jsonschema
# jsonschema-specifications
regex==2024.11.6
# via
# crewai
# diffusers
# nltk
# tiktoken
# transformers
requests==2.32.3
# via
# arxiv
# auth0-python
# cohere
# crewai-tools
# datasets
# diffusers
# docker
# google-api-core
# google-cloud-bigquery
# google-cloud-storage
# gptcache
# huggingface-hub
# instructor
# kubernetes
# langchain
# langchain-community
# langsmith