Commit 2e21f59 1 parent 920e090 commit 2e21f59 Copy full SHA for 2e21f59
File tree 6 files changed +16
-8
lines changed
6 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 24
24
25
25
- name : Build Docker file
26
26
run : |
27
- docker build -t ghcr.io/bionic-gpt/llama-3-8b-chat:latest -t bionic-gpt/llama-3-8b-chat:latest -f Dockerfile.8b.cpu .
28
- docker push ghcr.io/bionic-gpt/llama-3-8b-chat:latest
27
+ docker build -t ghcr.io/bionic-gpt/llama-3.2-3b:latest -t bionic-gpt/llama-3.2-3b:latest -f Dockerfile.llama3.2-3b.cpu .
28
+ docker push ghcr.io/bionic-gpt/llama-3.2-3b:latest
29
+
30
+ docker build -t ghcr.io/bionic-gpt/embeddings:latest -t bionic-gpt/embeddings:latest -f Dockerfile.embeddings .
31
+ docker push ghcr.io/bionic-gpt/embeddings:latest
29
32
30
33
- name : Semantic Release
31
34
run : |
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- sed -i " s/llama-2-7b-chat:[0-9.]*/llama-2-7b-chat:$1 /" ../../README.md
2
+ sed -i " s/llama-2-7b-chat:[0-9.]*/llama-2-7b-chat:$1 /" ../../README.md
3
+ sed -i " s/llama-3.2-3b:[0-9.]*/llama-3.2-3b:$1 /" ../../README.md
4
+ sed -i " s/embeddings:[0-9.]*/embeddings:$1 /" ../../README.md
Original file line number Diff line number Diff line change 4
4
" @semantic-release/commit-analyzer" ,
5
5
" @semantic-release/release-notes-generator" ,
6
6
[" @semantic-release-plus/docker" , {
7
- "name" : " ghcr.io/bionic-gpt/llama-3-8b-chat:latest" ,
7
+ "name" : " ghcr.io/bionic-gpt/llama-3.2-3b:latest" ,
8
+ "skipLogin" : true
9
+ }],
10
+ [" @semantic-release-plus/docker" , {
11
+ "name" : " ghcr.io/bionic-gpt/embeddings:latest" ,
8
12
"skipLogin" : true
9
13
}],
10
14
[" @semantic-release/exec" , {
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ Open AI API compatible docker images. We select models and package them in high
5
5
| Image Name | Parameters | Type | Context Size | Image Size | Quantization | Ram Requirements |
6
6
| ---| ---| ---| ---| ---| ---| ---|
7
7
| llama-2-7b-chat:1.1.1| 7b | LLama 2 | 2K | 5GB | Yes | 16GB |
8
+ | llama-3.2-3b:1.1.1| 7b | LLama 3.2 | 2K | 5GB | Yes | 16GB |
9
+ | embeddings:1.1.1| 7b | bge: small-en-v1 .5-q8_0 | 2K | 5GB | Yes | 16GB |
8
10
9
11
## Features
10
12
@@ -15,7 +17,7 @@ Open AI API compatible docker images. We select models and package them in high
15
17
## Startup the API
16
18
17
19
``` sh
18
- docker run -it --rm -p 3000:11434 ghcr.io/bionic-gpt/llama-2-7b-chat :1.1.1
20
+ docker run -it --rm -p 3000:11434 ghcr.io/bionic-gpt/llama-3.2-3b:1.1.1 :1.1.1
19
21
```
20
22
21
23
## Try it out
You can’t perform that action at this time.
0 commit comments