File tree Expand file tree Collapse file tree 6 files changed +16
-8
lines changed Expand file tree Collapse file tree 6 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" , {
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
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
You can’t perform that action at this time.
0 commit comments