8000 Support of OpenChat 3.5 by Smartappli · Pull Request #928 · serge-chat/serge · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Support of OpenChat 3. 8000 5 #928

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,13 @@ Instructions for setting up Serge on Kubernetes can be found in the [wiki](https
| Category | Models |
|:-------------:|:-------|
| **CodeLLaMA** | 7B, 13B |
| **Falcon** | 7B, 7B-Instruct, 40B, 40B-Instruct |
| **Falcon** | 7B, 7B-Instruct, 40B, 40B-Instruct, 180B, 180b-Chat |
| **LLaMA** | 7B, 13B, 70B |
| **Meditron** | 7B, 70B |
| **Mistral** | 7B, 7B-Instruct, 7B-OpenOrca |
| **Neural-Chat ** | 7B-v3.1 |
| **OpenLLaMA** | 3B-v2, 7B-v2, 13B-v2 |
| **Orca-2** | 7B, 13B |
| **Vicuna** | 7B-v1.5, 13B-v1.5 |
| **Zephyr** | 7B-Alpha, 7B-Beta |

Expand Down
97 changes: 97 additions & 0 deletions api/src/serge/data/models.json
AC5F
Original file line number Diff line number Diff line change
@@ -1,4 +1,101 @@
[
{
"name": "Neural-Chat",
"models": [
{
"name": "Neural-Chat-7B-v3-1",
"repo": "TheBloke/neural-chat-7B-v3-1-GGUFF",
"files": [
{
"name": "q4_K_M",
"filename": "neural-chat-7b-v3-1.Q4_K_M.gguf",
"disk_space": 4370000000.0
}
]
}
]
},
{
"name": "OpenChat",
"models": [
{
"name": "OpenChat-3_5-7B",
"repo": "TheBloke/openchat_3.5-GGUF",
"files": [
{
"name": "q4_K_M",
"filename": "openchat_3.5.Q4_K_M.gguf",
"disk_space": 4370000000.0
}
]
}
]
},
{
"name": "Open_LLaMA",
"models": [
{
"name": "Open_LLaMA-3B-v2",
"repo": "maddes8cht/openlm-research-open_llama_3b_v2-gguf",
"files": [
{
"name": "q4_K_M",
"filename": "openlm-research-open_llama_3b_v2-Q4_K_M.gguff",
"disk_space": 2580000000.0
}
]
},
{
"name": "Open_LLaMA-7B-v2",
"repo": "maddes8cht/openlm-research-open_llama_7b_v2-gguf",
"files": [
{
"name": "q4_K_M",
"filename": "openlm-research-open_llama_7b_v2-Q4_K_M.gguf",
"disk_space": 4080000000.0
}
]
},
{
"name": "Open_LLaMA-13B-V2",
"repo": "maddes8cht/openlm-research-open_llama_13b-gguf",
"files": [
{
"name": "q4_K_M",
"filename": "openlm-research-open_llama_13b-Q4_K_M.gguf",
"disk_space": 7870000000.0
}
]
}
]
},
{
"name": "Orca-2",
"models": [
{
"name": "Orca-2-7B",
"repo": "TheBloke/Orca-2-7B-GGUF",
"files": [
{
"name": "q4_K_M",
"filename": " orca-2-7b.Q4_K_M.gguf",
"disk_space": 4080000000.0
}
]
},
{
"name": "Orca-2-13B",
"repo": "TheBloke/Orca-2-13B-GGUF",
"files": [
{
"name": "q4_K_M",
"filename": " orca-2-13b.Q4_K_M.gguf",
"disk_space": 7870000000.0
}
]
}
]
},
{
"name": "Meditron",
"models": [
Expand Down
0