Skip to content

Commit

Permalink
Add support for Vicuna 7B and 13B (#903)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaby authored Nov 26, 2023
1 parent 6e58157 commit 05224d2
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Instructions for setting up Serge on Kubernetes can be found in the [wiki](https
| **CodeLLaMA** | 7B, 13B |
| **LLaMA** | 7B, 13B, 70B |
| **Mistral** | 7B-Instruct, 7B-OpenOrca |
| **Vicuna** | 7B-v1.5, 13B-v1.5 |
| **Zephyr** | 7B-Alpha, 7B-Beta |
Additional weights can be added to the `serge_weights` volume using `docker cp`:
Expand Down
27 changes: 27 additions & 0 deletions api/src/serge/data/models.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
[
{
"name": "Vicuna",
"models": [
{
"name": "Vicuna-7B",
"repo": "TheBloke/vicuna-7B-v1.5-GGUF",
"files": [
{
"name": "q4_K_M",
"filename": "vicuna-7b-v1.5.Q4_K_M.gguf",
"disk_space": 4080000000.0
}
]
},
{
"name": "Vicuna-13B",
"repo": "TheBloke/vicuna-13B-v1.5-GGUF",
"files": [
{
"name": "q4_K_M",
"filename": "vicuna-13b-v1.5.Q4_K_M.gguf",
"disk_space": 7870000000.0
}
]
}
]
},
{
"name": "CodeLLaMA",
"models": [
Expand Down

0 comments on commit 05224d2

Please sign in to comment.