Spaces:
Sleeping
Sleeping
Upload requirements.txt
Browse files- requirements.txt +29 -0
requirements.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core libraries
|
2 |
+
streamlit
|
3 |
+
langchain
|
4 |
+
langchain-openai
|
5 |
+
langchain-community
|
6 |
+
pydantic
|
7 |
+
|
8 |
+
# Natural Language Processing
|
9 |
+
transformers
|
10 |
+
sentence-transformers
|
11 |
+
|
12 |
+
# Data handling and storage
|
13 |
+
chromadb
|
14 |
+
pickle5
|
15 |
+
|
16 |
+
# Machine Learning
|
17 |
+
torch
|
18 |
+
|
19 |
+
# Date and time handling
|
20 |
+
python-dateutil
|
21 |
+
|
22 |
+
# API and networking
|
23 |
+
requests
|
24 |
+
|
25 |
+
# Tracing and monitoring
|
26 |
+
langchain-cli
|
27 |
+
|
28 |
+
# Note: Version numbers are not specified to get the latest compatible versions.
|
29 |
+
# You may want to specify versions for production use.
|