Skip to content

Commit

Permalink
Add 16k models (#38)
Browse files Browse the repository at this point in the history
also added a `3.5` alias
  • Loading branch information
benjamin-kirkbride authored Jun 17, 2023
1 parent 5e21195 commit b12e28c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion llm/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@

DEFAULT_MODEL = "gpt-3.5-turbo"

MODEL_ALIASES = {"4": "gpt-4", "gpt4": "gpt-4", "chatgpt": "gpt-3.5-turbo"}
MODEL_ALIASES = {
"4": "gpt-4",
"gpt4": "gpt-4",
"chatgpt": "gpt-3.5-turbo",
"3.5": "gpt-3.5-turbo",
"chatgpt-16k": "gpt-3.5-turbo-16k",
"3.5-16k": "gpt-3.5-turbo-16k",
}

DEFAULT_TEMPLATE = "prompt: "

Expand Down

0 comments on commit b12e28c

Please sign in to comment.