Spaces:
Sleeping
Sleeping
MikaJLeh
commited on
Commit
•
4c5a570
1
Parent(s):
1058f5c
requirements included
Browse files- app.py +1 -1
- requirements.txt +26 -0
app.py
CHANGED
@@ -31,7 +31,7 @@ from langchain.text_splitter import RecursiveCharacterTextSplitter
|
|
31 |
from langchain.memory import ConversationBufferMemory
|
32 |
from langchain.prompts import PromptTemplate
|
33 |
import joblib
|
34 |
-
|
35 |
|
36 |
import nest_asyncio # noqa: E402
|
37 |
nest_asyncio.apply()
|
|
|
31 |
from langchain.memory import ConversationBufferMemory
|
32 |
from langchain.prompts import PromptTemplate
|
33 |
import joblib
|
34 |
+
|
35 |
|
36 |
import nest_asyncio # noqa: E402
|
37 |
nest_asyncio.apply()
|
requirements.txt
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
streamlit >= 1.32.2
|
2 |
+
chroma_db >= 0.4.24
|
3 |
+
llama_index >= 0.10.40
|
4 |
+
langchain_community >= 0.0.29
|
5 |
+
langchain >= 0.1.0
|
6 |
+
langchain_groq >= 0.1.9
|
7 |
+
langchain_core >= 0.2.33
|
8 |
+
llama_parser >= 0.4.2
|
9 |
+
langchain_huggingface >= 0.0.3
|
10 |
+
streamlit_chat >= 0.1.1
|
11 |
+
joblib >= 1.4.2
|
12 |
+
nest_asyncio >= 1.6.0
|
13 |
+
fpdf >= 1.7.2
|
14 |
+
pandas >= 2.1.2
|
15 |
+
eod >= 0.2.1
|
16 |
+
numpy >= 1.24.2
|
17 |
+
pytorch_lightning >= 2.1.0
|
18 |
+
fastapi >= 0.104.1
|
19 |
+
torch >= 2.1.1
|
20 |
+
torchmetrics >= 1.2.0
|
21 |
+
datetime >= 5.5
|
22 |
+
requests >= 2.31.0
|
23 |
+
nashpy >= 0.0.40
|
24 |
+
pydantic >= 2.5.2
|
25 |
+
typing >= 3.7.4.3
|
26 |
+
scipy >= 0.14.0
|