Spaces:
Runtime error
Runtime error
limcheekin
commited on
Commit
•
5041f48
1
Parent(s):
35f15e1
feat: updated model to q5_1 as q8_0 is too slow.
Browse files- Dockerfile +1 -1
- README.md +2 -2
- index.html +2 -2
Dockerfile
CHANGED
@@ -15,7 +15,7 @@ RUN pip install -U pip setuptools wheel && \
|
|
15 |
|
16 |
# Download model
|
17 |
RUN mkdir model && \
|
18 |
-
curl -L https://huggingface.co/s3nh/ToolBench-ToolLLaMA-2-7b-GGML/resolve/main/ToolBench-ToolLLaMA-2-7b.ggmlv3.
|
19 |
|
20 |
COPY ./start_server.sh ./
|
21 |
COPY ./main.py ./
|
|
|
15 |
|
16 |
# Download model
|
17 |
RUN mkdir model && \
|
18 |
+
curl -L https://huggingface.co/s3nh/ToolBench-ToolLLaMA-2-7b-GGML/resolve/main/ToolBench-ToolLLaMA-2-7b.ggmlv3.q5_1.bin -o model/ggmlv3-model.bin
|
19 |
|
20 |
COPY ./start_server.sh ./
|
21 |
COPY ./main.py ./
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title: ToolBench-ToolLLaMA-2-7b-GGML (
|
3 |
colorFrom: purple
|
4 |
colorTo: blue
|
5 |
sdk: docker
|
@@ -15,6 +15,6 @@ tags:
|
|
15 |
pinned: false
|
16 |
---
|
17 |
|
18 |
-
# ToolBench-ToolLLaMA-2-7b-GGML (
|
19 |
|
20 |
Please refer to the [index.html](index.html) for more information.
|
|
|
1 |
---
|
2 |
+
title: ToolBench-ToolLLaMA-2-7b-GGML (q5_1)
|
3 |
colorFrom: purple
|
4 |
colorTo: blue
|
5 |
sdk: docker
|
|
|
15 |
pinned: false
|
16 |
---
|
17 |
|
18 |
+
# ToolBench-ToolLLaMA-2-7b-GGML (q5_1)
|
19 |
|
20 |
Please refer to the [index.html](index.html) for more information.
|
index.html
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
4 |
-
<title>ToolBench-ToolLLaMA-2-7b-GGML (
|
5 |
</head>
|
6 |
<body>
|
7 |
-
<h1>ToolBench-ToolLLaMA-2-7b-GGML (
|
8 |
<p>
|
9 |
With the utilization of the
|
10 |
<a href="https://github.com/abetlen/llama-cpp-python">llama-cpp-python</a>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
4 |
+
<title>ToolBench-ToolLLaMA-2-7b-GGML (q5_1)</title>
|
5 |
</head>
|
6 |
<body>
|
7 |
+
<h1>ToolBench-ToolLLaMA-2-7b-GGML (q5_1)</h1>
|
8 |
<p>
|
9 |
With the utilization of the
|
10 |
<a href="https://github.com/abetlen/llama-cpp-python">llama-cpp-python</a>
|