Spaces:
Runtime error
Runtime error
limcheekin
commited on
Commit
•
35f15e1
1
Parent(s):
2516e02
feat: updated to ToolBench-ToolLLaMA-2-7b.ggmlv3.q8_0 model
Browse files- Dockerfile +2 -2
- README.md +9 -9
- index.html +6 -6
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/
|
19 |
|
20 |
COPY ./start_server.sh ./
|
21 |
COPY ./main.py ./
|
@@ -32,4 +32,4 @@ ENV PORT=7860
|
|
32 |
EXPOSE ${PORT}
|
33 |
|
34 |
# Run the server start script
|
35 |
-
CMD ["/bin/sh", "./start_server.sh"]
|
|
|
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.q8_0.bin -o model/ggmlv3-model.bin
|
19 |
|
20 |
COPY ./start_server.sh ./
|
21 |
COPY ./main.py ./
|
|
|
32 |
EXPOSE ${PORT}
|
33 |
|
34 |
# Run the server start script
|
35 |
+
CMD ["/bin/sh", "./start_server.sh"]
|
README.md
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
colorFrom: purple
|
4 |
colorTo: blue
|
5 |
sdk: docker
|
6 |
models:
|
7 |
-
-
|
|
|
8 |
tags:
|
9 |
-
- inference api
|
10 |
-
- openai-api compatible
|
11 |
-
- llama-cpp-python
|
12 |
-
-
|
13 |
-
- ggml
|
14 |
pinned: false
|
15 |
-
duplicated_from: limcheekin/orca_mini_v3_13B-GGML
|
16 |
---
|
17 |
|
18 |
-
#
|
19 |
|
20 |
Please refer to the [index.html](index.html) for more information.
|
|
|
1 |
---
|
2 |
+
title: ToolBench-ToolLLaMA-2-7b-GGML (q8_0)
|
3 |
colorFrom: purple
|
4 |
colorTo: blue
|
5 |
sdk: docker
|
6 |
models:
|
7 |
+
- ToolBench/ToolLLaMA-2-7b
|
8 |
+
- s3nh/ToolBench-ToolLLaMA-2-7b-GGML
|
9 |
tags:
|
10 |
+
- inference api
|
11 |
+
- openai-api compatible
|
12 |
+
- llama-cpp-python
|
13 |
+
- ToolLLaMA-2-7b
|
14 |
+
- ggml
|
15 |
pinned: false
|
|
|
16 |
---
|
17 |
|
18 |
+
# ToolBench-ToolLLaMA-2-7b-GGML (q8_0)
|
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>
|
5 |
</head>
|
6 |
<body>
|
7 |
-
<h1>
|
8 |
<p>
|
9 |
With the utilization of the
|
10 |
<a href="https://github.com/abetlen/llama-cpp-python">llama-cpp-python</a>
|
@@ -16,14 +16,14 @@
|
|
16 |
<ul>
|
17 |
<li>
|
18 |
The API endpoint:
|
19 |
-
<a href="https://limcheekin-
|
20 |
-
>https://limcheekin-
|
21 |
>
|
22 |
</li>
|
23 |
<li>
|
24 |
The API doc:
|
25 |
-
<a href="https://limcheekin-
|
26 |
-
>https://limcheekin-
|
27 |
>
|
28 |
</li>
|
29 |
</ul>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
4 |
+
<title>ToolBench-ToolLLaMA-2-7b-GGML (q8_0)</title>
|
5 |
</head>
|
6 |
<body>
|
7 |
+
<h1>ToolBench-ToolLLaMA-2-7b-GGML (q8_0)</h1>
|
8 |
<p>
|
9 |
With the utilization of the
|
10 |
<a href="https://github.com/abetlen/llama-cpp-python">llama-cpp-python</a>
|
|
|
16 |
<ul>
|
17 |
<li>
|
18 |
The API endpoint:
|
19 |
+
<a href="https://limcheekin-toolbench-toolllama-2-7b-ggml.hf.space/v1"
|
20 |
+
>https://limcheekin-toolbench-toolllama-2-7b-ggml.hf.space/v1</a
|
21 |
>
|
22 |
</li>
|
23 |
<li>
|
24 |
The API doc:
|
25 |
+
<a href="https://limcheekin-toolbench-toolllama-2-7b-ggml.hf.space/docs"
|
26 |
+
>https://limcheekin-toolbench-toolllama-2-7b-ggml.hf.space/docs</a
|
27 |
>
|
28 |
</li>
|
29 |
</ul>
|