Skip to content
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

Fix model names #48

Merged
merged 1 commit into from
May 10, 2023
Merged
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
Original file line number Diff line number Diff line change
@@ -123,8 +123,8 @@ data class LLMModel(val name: String, val kind: Kind) {
val GPT_4 = LLMModel("gpt-4", Kind.Chat)
val GPT_4_0314 = LLMModel("gpt-4-0314", Kind.Chat)
val GPT_4_32K = LLMModel("gpt-4-32k", Kind.Chat)
val GPT_3_5_TURBO = LLMModel("gpt3.5-turbo", Kind.Chat)
val GPT_3_5_TURBO_0301 = LLMModel("gpt3.5-turbo-0301", Kind.Chat)
val GPT_3_5_TURBO = LLMModel("gpt-3.5-turbo", Kind.Chat)
val GPT_3_5_TURBO_0301 = LLMModel("gpt-3.5-turbo-0301", Kind.Chat)
val TEXT_DAVINCI_003 = LLMModel("text-davinci-003", Kind.Completion)
val TEXT_DAVINCI_002 = LLMModel("text-davinci-002", Kind.Completion)
val TEXT_CURIE_001 = LLMModel("text-curie-001", Kind.Completion)