Skip to content

Commit

Permalink
Actually do the gpt-4-turbo work in a branch, refs #323
Browse files Browse the repository at this point in the history
This reverts commit 2bfd039.
  • Loading branch information
simonw committed Nov 6, 2023
1 parent 2bfd039 commit 31b02ec
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions llm/default_plugins/openai_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,11 @@ def register_models(register):
register(Chat("gpt-3.5-turbo"), aliases=("3.5", "chatgpt"))
register(Chat("gpt-3.5-turbo-16k"), aliases=("chatgpt-16k", "3.5-16k"))
register(Chat("gpt-4"), aliases=("4", "gpt4"))
register(Chat("gpt-4-turbo"), aliases=("4-turbo", "4t"))
register(Chat("gpt-4-32k"), aliases=("4-32k",))
register(
Completion("gpt-3.5-turbo-instruct", default_max_tokens=256),
aliases=("3.5-instruct", "chatgpt-instruct"),
)

# Load extra models
extra_path = llm.user_dir() / "extra-openai-models.yaml"
if not extra_path.exists():
Expand Down

0 comments on commit 31b02ec

Please sign in to comment.