Spaces:
Running
on
A100
Running
on
A100
AurelioAguirre
commited on
Commit
·
cade06f
1
Parent(s):
a7ac26a
Changed port to 8001
Browse files- Dockerfile +3 -0
- main/config.yaml +3 -3
Dockerfile
CHANGED
@@ -14,5 +14,8 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
14 |
COPY --chown=user . /app
|
15 |
COPY --chown=user main $HOME/app/main
|
16 |
|
|
|
|
|
|
|
17 |
CMD ["python", "-m", "main.app"]
|
18 |
|
|
|
14 |
COPY --chown=user . /app
|
15 |
COPY --chown=user main $HOME/app/main
|
16 |
|
17 |
+
# Expose the port your application runs on.
|
18 |
+
EXPOSE 7680
|
19 |
+
|
20 |
CMD ["python", "-m", "main.app"]
|
21 |
|
main/config.yaml
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
server:
|
2 |
host: "0.0.0.0"
|
3 |
-
port:
|
4 |
|
5 |
model:
|
6 |
base_path: "."
|
@@ -10,8 +10,8 @@ model:
|
|
10 |
temperature: 0.7
|
11 |
repetition_penalty: 1.1
|
12 |
defaults:
|
13 |
-
model_name: "huihui-ai/Llama-3.2-3B-Instruct-abliterated"
|
14 |
-
|
15 |
|
16 |
folders:
|
17 |
models: "main/models"
|
|
|
1 |
server:
|
2 |
host: "0.0.0.0"
|
3 |
+
port: 8001
|
4 |
|
5 |
model:
|
6 |
base_path: "."
|
|
|
10 |
temperature: 0.7
|
11 |
repetition_penalty: 1.1
|
12 |
defaults:
|
13 |
+
#model_name: "huihui-ai/Llama-3.2-3B-Instruct-abliterated"
|
14 |
+
model_name: "huihui-ai/Qwen2.5-Coder-32B-Instruct-abliterated"
|
15 |
|
16 |
folders:
|
17 |
models: "main/models"
|