Spaces:
Sleeping
Sleeping
fix: dockerfile
Browse files- Dockerfile +0 -14
- README.md +3 -1
- requirements.txt +1 -1
Dockerfile
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
2 |
-
# you will also find guides on how best to write your Dockerfile
|
3 |
-
|
4 |
-
FROM python:3.9
|
5 |
-
|
6 |
-
WORKDIR /code
|
7 |
-
|
8 |
-
COPY ./requirements.txt /code/requirements.txt
|
9 |
-
|
10 |
-
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
-
|
12 |
-
COPY . .
|
13 |
-
|
14 |
-
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
README.md
CHANGED
@@ -3,7 +3,9 @@ title: OpenCodeInterpreter DS 33B
|
|
3 |
emoji: 🧠
|
4 |
colorFrom: indigo
|
5 |
colorTo: gray
|
6 |
-
sdk:
|
|
|
|
|
7 |
pinned: false
|
8 |
license: mit
|
9 |
---
|
|
|
3 |
emoji: 🧠
|
4 |
colorFrom: indigo
|
5 |
colorTo: gray
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 4.24.0
|
8 |
+
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
---
|
requirements.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
accelerate==0.23.0
|
2 |
bitsandbytes==0.41.1
|
3 |
-
gradio==
|
4 |
protobuf==3.20.3
|
5 |
scipy==1.11.2
|
6 |
sentencepiece==0.1.99
|
|
|
1 |
accelerate==0.23.0
|
2 |
bitsandbytes==0.41.1
|
3 |
+
gradio==4.24.0
|
4 |
protobuf==3.20.3
|
5 |
scipy==1.11.2
|
6 |
sentencepiece==0.1.99
|