Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -11,7 +11,7 @@ ENV MAKEFLAGS="-j1"
|
|
| 11 |
RUN pip install "llama-cpp-python==0.2.90" fastapi uvicorn
|
| 12 |
|
| 13 |
# Baixa o nosso modelo Oficial da Qwen
|
| 14 |
-
RUN wget https://huggingface.co/Qwen/Qwen2.5-
|
| 15 |
|
| 16 |
# Copia a sua API super otimizada para o container
|
| 17 |
COPY api.py /api.py
|
|
|
|
| 11 |
RUN pip install "llama-cpp-python==0.2.90" fastapi uvicorn
|
| 12 |
|
| 13 |
# Baixa o nosso modelo Oficial da Qwen
|
| 14 |
+
RUN wget https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct-GGUF/resolve/main/qwen2.5-0.5b-instruct-q8_0.gguf -O /model.gguf
|
| 15 |
|
| 16 |
# Copia a sua API super otimizada para o container
|
| 17 |
COPY api.py /api.py
|