root
commited on
Commit
·
b1a86a2
1
Parent(s):
e676d24
fix upload
Browse files- requirements.txt +0 -6
- server/start_server.sh +1 -1
requirements.txt
CHANGED
@@ -3,10 +3,6 @@ pypdf
|
|
3 |
unstructured
|
4 |
typing
|
5 |
pydantic
|
6 |
-
llama-index==0.10.28
|
7 |
-
llama-index-llms-openai-like==0.1.3
|
8 |
-
llama-index-embeddings-openai==0.1.7
|
9 |
-
llama-index-readers-web==0.1.8
|
10 |
openai==1.53.0
|
11 |
httpx==0.27.2
|
12 |
#streamlit==1.41.1
|
@@ -14,8 +10,6 @@ httpx==0.27.2
|
|
14 |
streamlit-community-navigation-bar==4.0.9
|
15 |
aiohttp
|
16 |
docx2txt
|
17 |
-
trafilatura==1.8.1
|
18 |
-
motor
|
19 |
loguru
|
20 |
qdrant-client==1.12.2
|
21 |
Pillow
|
|
|
3 |
unstructured
|
4 |
typing
|
5 |
pydantic
|
|
|
|
|
|
|
|
|
6 |
openai==1.53.0
|
7 |
httpx==0.27.2
|
8 |
#streamlit==1.41.1
|
|
|
10 |
streamlit-community-navigation-bar==4.0.9
|
11 |
aiohttp
|
12 |
docx2txt
|
|
|
|
|
13 |
loguru
|
14 |
qdrant-client==1.12.2
|
15 |
Pillow
|
server/start_server.sh
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
#!/bin/bash
|
2 |
#cd /home/server/ && python3 main.py
|
3 |
-
cd /home/server/ && streamlit run main.py --server.port 7860
|
|
|
1 |
#!/bin/bash
|
2 |
#cd /home/server/ && python3 main.py
|
3 |
+
cd /home/server/ && streamlit run main.py --server.port 7860 --server.enableXsrfProtection false
|