Yash Sachdeva commited on
Commit
4b73894
1 Parent(s): 3e26437

python latest

Browse files
Files changed (1) hide show
  1. requirements.txt +7 -15
requirements.txt CHANGED
@@ -1,15 +1,7 @@
1
- # Use the official Python 3.10.9 image
2
- FROM python:3.10.9
3
-
4
- # Copy the current directory contents into the container at .
5
- COPY . .
6
-
7
- # Set the working directory to /
8
- WORKDIR /
9
-
10
- # Install requirements.txt
11
- RUN pip install --no-cache-dir --upgrade -r /requirements.txt
12
-
13
- # Start the FastAPI app on port 7860, the default port expected by Spaces
14
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
15
-
 
1
+ fastapi==0.99.1
2
+ uvicorn
3
+ requests
4
+ pydantic==1.10.12
5
+ langchain
6
+ clarifai
7
+ Pillow