Skip to content

Commit

Permalink
Add openchat-3.5-1210
Browse files Browse the repository at this point in the history
  • Loading branch information
jncraton committed Jan 3, 2024
1 parent 1c3dab1 commit d713b52
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

### Added

- Add openchat-3.5-1210 model
- Support static batching by passing lists to `do`
- Support choices list on `do` to restrict possible outputs

Expand Down
14 changes: 14 additions & 0 deletions languagemodels/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,20 @@ class ModelFilterException(Exception):
# The best model that fits in the memory bounds and matches the model filter
# will be selected
models = [
{
"name": "openchat-3.5-1210",
"tuning": "instruct",
"datasets": ["mistral", "openorca", "flan"],
"params": 7e9,
"quantization": "int8",
"backend": "ct2",
"architecture": "decoder-only-transformer",
"license": "apache-2.0",
"prompt_fmt": (
"GPT4 Correct User: Hello<|end_of_turn|>"
"GPT4 Correct Assistant:"
),
},
{
"name": "neural-chat-7b-v3-1",
"tuning": "instruct",
Expand Down

0 comments on commit d713b52

Please sign in to comment.