Skip to content

Commit 2e21f59

Browse files
$NAME$NAME
$NAME
authored and
$NAME
committed
fix: Update models, add embeddings
1 parent 920e090 commit 2e21f59

6 files changed

+16
-8
lines changed

.github/workflows/ci.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ jobs:
2424

2525
- name: Build Docker file
2626
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
2932
3033
- name: Semantic Release
3134
run: |

.github/workflows/update-version.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
#!/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

.releaserc.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
"@semantic-release/commit-analyzer",
55
"@semantic-release/release-notes-generator",
66
["@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",
812
"skipLogin": true
913
}],
1014
["@semantic-release/exec", {

Dockerfile.7b.cpu

-3
This file was deleted.
File renamed without changes.

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Open AI API compatible docker images. We select models and package them in high
55
|Image Name |Parameters | Type | Context Size | Image Size | Quantization | Ram Requirements |
66
|---|---|---|---|---|---|---|
77
|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 |
810

911
## Features
1012

@@ -15,7 +17,7 @@ Open AI API compatible docker images. We select models and package them in high
1517
## Startup the API
1618

1719
```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
1921
```
2022

2123
## Try it out

0 commit comments

Comments
 (0)