File size: 10,235 Bytes
9a62b2a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# This file was autogenerated by uv via the following command:
#    uv pip compile --output-file requirements.txt pyproject.toml
aiofiles==25.1.0
    # via unstructured-client
aiohappyeyeballs==2.6.1
    # via aiohttp
aiohttp==3.13.1
    # via
    #   fsspec
    #   instructor
    #   langchain-community
aiosignal==1.4.0
    # via aiohttp
annotated-doc==0.0.3
    # via fastapi
annotated-types==0.7.0
    # via pydantic
anyio==4.11.0
    # via
    #   httpx
    #   openai
    #   starlette
appdirs==1.4.4
    # via ragas
async-timeout==4.0.3
    # via
    #   aiohttp
    #   langchain-classic
attrs==25.4.0
    # via aiohttp
backoff==2.2.1
    # via unstructured
beautifulsoup4==4.14.2
    # via unstructured
certifi==2025.10.5
    # via
    #   httpcore
    #   httpx
    #   requests
cffi==2.0.0
    # via cryptography
cfgv==3.4.0
    # via pre-commit
charset-normalizer==3.4.4
    # via
    #   requests
    #   unstructured
click==8.3.0
    # via
    #   nltk
    #   python-oxmsg
    #   typer
    #   uvicorn
cryptography==46.0.3
    # via unstructured-client
dataclasses-json==0.6.7
    # via
    #   langchain-community
    #   unstructured
datasets==4.3.0
    # via ragas
dill==0.4.0
    # via
    #   datasets
    #   multiprocess
diskcache==5.6.3
    # via
    #   instructor
    #   ragas
distlib==0.4.0
    # via virtualenv
distro==1.9.0
    # via openai
docstring-parser==0.17.0
    # via instructor
emoji==2.15.0
    # via unstructured
exceptiongroup==1.3.0
    # via anyio
fastapi==0.120.1
    # via generative-ai-portfolio-project (pyproject.toml)
filelock==3.20.0
    # via
    #   datasets
    #   huggingface-hub
    #   torch
    #   transformers
    #   virtualenv
filetype==1.2.0
    # via unstructured
frozenlist==1.8.0
    # via
    #   aiohttp
    #   aiosignal
fsspec==2025.9.0
    # via
    #   datasets
    #   huggingface-hub
    #   torch
gitdb==4.0.12
    # via gitpython
gitpython==3.1.45
    # via ragas
grpcio==1.76.0
    # via qdrant-client
h11==0.16.0
    # via
    #   httpcore
    #   uvicorn
h2==4.3.0
    # via httpx
hf-xet==1.2.0
    # via huggingface-hub
hpack==4.1.0
    # via h2
html5lib==1.1
    # via unstructured
httpcore==1.0.9
    # via
    #   httpx
    #   unstructured-client
httpx==0.28.1
    # via
    #   datasets
    #   langgraph-sdk
    #   langsmith
    #   ollama
    #   openai
    #   qdrant-client
    #   unstructured-client
httpx-sse==0.4.3
    # via langchain-community
huggingface-hub==0.36.0
    # via
    #   datasets
    #   sentence-transformers
    #   tokenizers
    #   transformers
hyperframe==6.1.0
    # via h2
identify==2.6.15
    # via pre-commit
idna==3.11
    # via
    #   anyio
    #   httpx
    #   requests
    #   yarl
instructor==1.12.0
    # via ragas
jinja2==3.1.6
    # via
    #   instructor
    #   torch
jiter==0.10.0
    # via
    #   instructor
    #   openai
joblib==1.5.2
    # via
    #   nltk
    #   scikit-learn
jsonpatch==1.33
    # via langchain-core
jsonpointer==3.0.0
    # via jsonpatch
langchain==1.0.2
    # via
    #   generative-ai-portfolio-project (pyproject.toml)
    #   ragas
langchain-classic==1.0.0
    # via langchain-community
langchain-community==0.4.1
    # via
    #   generative-ai-portfolio-project (pyproject.toml)
    #   ragas
langchain-core==1.0.1
    # via
    #   langchain
    #   langchain-classic
    #   langchain-community
    #   langchain-ollama
    #   langchain-openai
    #   langchain-text-splitters
    #   langgraph
    #   langgraph-checkpoint
    #   langgraph-prebuilt
    #   ragas
langchain-ollama==1.0.0
    # via generative-ai-portfolio-project (pyproject.toml)
langchain-openai==1.0.1
    # via ragas
langchain-text-splitters==1.0.0
    # via
    #   generative-ai-portfolio-project (pyproject.toml)
    #   langchain-classic
langdetect==1.0.9
    # via unstructured
langgraph==1.0.1
    # via langchain
langgraph-checkpoint==3.0.0
    # via
    #   langgraph
    #   langgraph-prebuilt
langgraph-prebuilt==1.0.1
    # via langgraph
langgraph-sdk==0.2.9
    # via langgraph
langsmith==0.4.38
    # via
    #   langchain-classic
    #   langchain-community
    #   langchain-core
lxml==6.0.2
    # via
    #   python-docx
    #   unstructured
markdown-it-py==4.0.0
    # via rich
markupsafe==3.0.3
    # via jinja2
marshmallow==3.26.1
    # via dataclasses-json
mdurl==0.1.2
    # via markdown-it-py
mpmath==1.3.0
    # via sympy
multidict==6.7.0
    # via
    #   aiohttp
    #   yarl
multiprocess==0.70.16
    # via datasets
mypy-extensions==1.1.0
    # via typing-inspect
nest-asyncio==1.6.0
    # via ragas
networkx==3.4.2
    # via
    #   ragas
    #   torch
nltk==3.9.2
    # via unstructured
nodeenv==1.9.1
    # via pre-commit
numpy==2.2.6
    # via
    #   datasets
    #   langchain-community
    #   pandas
    #   qdrant-client
    #   ragas
    #   rank-bm25
    #   scikit-learn
    #   scikit-network
    #   scipy
    #   transformers
    #   unstructured
olefile==0.47
    # via python-oxmsg
ollama==0.6.0
    # via langchain-ollama
openai==1.109.1
    # via
    #   instructor
    #   langchain-openai
    #   ragas
orjson==3.11.4
    # via
    #   langgraph-sdk
    #   langsmith
ormsgpack==1.11.0
    # via langgraph-checkpoint
packaging==25.0
    # via
    #   datasets
    #   huggingface-hub
    #   langchain-core
    #   langsmith
    #   marshmallow
    #   transformers
pandas==2.3.3
    # via datasets
pillow==12.0.0
    # via
    #   ragas
    #   sentence-transformers
platformdirs==4.5.0
    # via virtualenv
portalocker==3.2.0
    # via qdrant-client
pre-commit==4.3.0
    # via instructor
propcache==0.4.1
    # via
    #   aiohttp
    #   yarl
protobuf==6.33.0
    # via qdrant-client
psutil==7.1.2
    # via unstructured
pyarrow==22.0.0
    # via datasets
pycparser==2.23
    # via cffi
pydantic==2.12.3
    # via
    #   fastapi
    #   instructor
    #   langchain
    #   langchain-classic
    #   langchain-core
    #   langgraph
    #   langsmith
    #   ollama
    #   openai
    #   pydantic-settings
    #   qdrant-client
    #   ragas
    #   unstructured-client
pydantic-core==2.41.4
    # via
    #   instructor
    #   pydantic
pydantic-settings==2.11.0
    # via langchain-community
pygments==2.19.2
    # via rich
pypdf==6.1.3
    # via
    #   generative-ai-portfolio-project (pyproject.toml)
    #   unstructured-client
python-dateutil==2.9.0.post0
    # via pandas
python-docx==1.2.0
    # via generative-ai-portfolio-project (pyproject.toml)
python-dotenv==1.2.1
    # via pydantic-settings
python-iso639==2025.2.18
    # via unstructured
python-magic==0.4.27
    # via unstructured
python-multipart==0.0.20
    # via generative-ai-portfolio-project (pyproject.toml)
python-oxmsg==0.0.2
    # via unstructured
pytz==2025.2
    # via pandas
pyyaml==6.0.3
    # via
    #   datasets
    #   huggingface-hub
    #   langchain-classic
    #   langchain-community
    #   langchain-core
    #   pre-commit
    #   transformers
qdrant-client==1.15.1
    # via generative-ai-portfolio-project (pyproject.toml)
ragas==0.3.7
    # via generative-ai-portfolio-project (pyproject.toml)
rank-bm25==0.2.2
    # via generative-ai-portfolio-project (pyproject.toml)
rapidfuzz==3.14.1
    # via unstructured
regex==2025.10.23
    # via
    #   nltk
    #   tiktoken
    #   transformers
requests==2.32.5
    # via
    #   generative-ai-portfolio-project (pyproject.toml)
    #   datasets
    #   huggingface-hub
    #   instructor
    #   langchain-classic
    #   langchain-community
    #   langsmith
    #   requests-toolbelt
    #   tiktoken
    #   transformers
    #   unstructured
requests-toolbelt==1.0.0
    # via
    #   langsmith
    #   unstructured-client
rich==14.2.0
    # via
    #   instructor
    #   ragas
    #   typer
safetensors==0.6.2
    # via transformers
scikit-learn==1.7.2
    # via sentence-transformers
scikit-network==0.33.3
    # via ragas
scipy==1.15.3
    # via
    #   scikit-learn
    #   scikit-network
    #   sentence-transformers
sentence-transformers==5.1.2
    # via generative-ai-portfolio-project (pyproject.toml)
shellingham==1.5.4
    # via typer
six==1.17.0
    # via
    #   html5lib
    #   langdetect
    #   python-dateutil
smmap==5.0.2
    # via gitdb
sniffio==1.3.1
    # via
    #   anyio
    #   openai
soupsieve==2.8
    # via beautifulsoup4
sqlalchemy==2.0.44
    # via
    #   langchain-classic
    #   langchain-community
starlette==0.48.0
    # via fastapi
sympy==1.14.0
    # via torch
tenacity==9.1.2
    # via
    #   instructor
    #   langchain-community
    #   langchain-core
threadpoolctl==3.6.0
    # via scikit-learn
tiktoken==0.12.0
    # via
    #   langchain-openai
    #   ragas
tokenizers==0.22.1
    # via transformers
torch==2.9.0
    # via sentence-transformers
tqdm==4.67.1
    # via
    #   datasets
    #   huggingface-hub
    #   nltk
    #   openai
    #   ragas
    #   sentence-transformers
    #   transformers
    #   unstructured
transformers==4.57.1
    # via sentence-transformers
typer==0.20.0
    # via
    #   instructor
    #   ragas
typing-extensions==4.15.0
    # via
    #   aiosignal
    #   anyio
    #   beautifulsoup4
    #   cryptography
    #   exceptiongroup
    #   fastapi
    #   grpcio
    #   huggingface-hub
    #   langchain-core
    #   multidict
    #   openai
    #   pydantic
    #   pydantic-core
    #   pypdf
    #   python-docx
    #   python-oxmsg
    #   sentence-transformers
    #   sqlalchemy
    #   starlette
    #   torch
    #   typer
    #   typing-inspect
    #   typing-inspection
    #   unstructured
    #   uvicorn
    #   virtualenv
typing-inspect==0.9.0
    # via dataclasses-json
typing-inspection==0.4.2
    # via
    #   pydantic
    #   pydantic-settings
tzdata==2025.2
    # via pandas
unstructured==0.18.15
    # via generative-ai-portfolio-project (pyproject.toml)
unstructured-client==0.42.3
    # via unstructured
urllib3==2.5.0
    # via
    #   qdrant-client
    #   requests
uvicorn==0.38.0
    # via generative-ai-portfolio-project (pyproject.toml)
virtualenv==20.35.3
    # via pre-commit
webencodings==0.5.1
    # via html5lib
wrapt==2.0.0
    # via unstructured
xxhash==3.6.0
    # via
    #   datasets
    #   langgraph
yarl==1.22.0
    # via aiohttp
zstandard==0.25.0
    # via langsmith