rohitkshirsagar19 commited on
Commit
a72b521
·
verified ·
1 Parent(s): a5b6740

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +69 -0
requirements.txt ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FastAPI and Server
2
+ fastapi
3
+ uvicorn[standard]
4
+ gunicorn
5
+ starlette
6
+ python-multipart
7
+
8
+ # --- CRITICAL FIX FOR RENDER DEPLOYMENT ---
9
+ # Use versions of Pydantic that provide pre-compiled "manylinux" wheels
10
+ # to avoid on-server Rust compilation on read-only filesystems.
11
+ pydantic
12
+ pydantic-core
13
+
14
+ # Vector Database
15
+ chromadb
16
+ bcrypt
17
+ opentelemetry-api
18
+ opentelemetry-instrumentation-fastapi
19
+ opentelemetry-sdk
20
+ posthog
21
+
22
+ # AI Embeddings
23
+ sentence-transformers
24
+ torch
25
+ torchvision
26
+ torchaudio
27
+ transformers
28
+ numpy
29
+ scikit-learn
30
+ scipy
31
+ safetensors
32
+ tokenizers
33
+ huggingface-hub
34
+
35
+
36
+ # Other essential dependencies
37
+ anyio
38
+ certifi
39
+ charset-normalizer
40
+ click
41
+ exceptiongroup
42
+ h11
43
+ httpcore
44
+ httptools
45
+ httpx
46
+ idna
47
+ joblib
48
+ MarkupSafe
49
+ onnxruntime
50
+ packaging
51
+ Pillow
52
+ protobuf
53
+ psutil
54
+ PyYAML
55
+ requests
56
+ six
57
+ sniffio
58
+ threadpoolctl
59
+ tqdm
60
+ typing-extensions
61
+ urllib3
62
+ uvloop
63
+ watchfiles
64
+ websockets
65
+
66
+
67
+
68
+ # Database
69
+ pinecone-client[grpc]