Spaces:
Build error
Build error
Commit
·
10dcb33
1
Parent(s):
db7e122
python3.8
Browse files- compose.yml +1 -3
- requirements.txt +3 -1
compose.yml
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
-
version: '3.8' # Docker Compose file version
|
2 |
-
|
3 |
services:
|
4 |
webapp:
|
5 |
-
image:
|
6 |
container_name: test # Name of the container
|
7 |
ports:
|
8 |
- "7860:7860" # Map port 7860 on the host to port 7860 in the container
|
|
|
|
|
|
|
1 |
services:
|
2 |
webapp:
|
3 |
+
image: aie4_mvp:latest # The name of your Docker image
|
4 |
container_name: test # Name of the container
|
5 |
ports:
|
6 |
- "7860:7860" # Map port 7860 on the host to port 7860 in the container
|
requirements.txt
CHANGED
@@ -2,7 +2,9 @@ chainlit==1.2.0
|
|
2 |
langchain==0.3.1
|
3 |
langchain-openai==0.2.1
|
4 |
langchain-community==0.3.1
|
|
|
|
|
5 |
qdrant-client==1.11.3
|
6 |
langchain-qdrant==0.1.4
|
7 |
PyMuPDF==1.24.10
|
8 |
-
python-dotenv==1.0.1
|
|
|
2 |
langchain==0.3.1
|
3 |
langchain-openai==0.2.1
|
4 |
langchain-community==0.3.1
|
5 |
+
grpcio-tools==1.60.0
|
6 |
+
protobuf==4.25.5
|
7 |
qdrant-client==1.11.3
|
8 |
langchain-qdrant==0.1.4
|
9 |
PyMuPDF==1.24.10
|
10 |
+
python-dotenv==1.0.1
|