Skip to content

Commit

Permalink
Fix: Resolved Issue lambiengcode#17 by adjusting GPT model
Browse files Browse the repository at this point in the history
Changed to gpt-3.5-turbo-instruct
  • Loading branch information
joaocarlosleme committed Oct 29, 2023
1 parent af64b7f commit b7ccf4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
.externalNativeBuild
.cxx
local.properties
app/src/main/java/com/chatgptlite/wanted/constants/Constants.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ enum class GPTModel(val model: String, val maxTokens: Int, val isChatCompletion:
gpt4v0613("gpt-4-0613", 8192, isChatCompletion = true),
gpt4p32k("gpt-4-32k", 32768, isChatCompletion = true),
gpt4p32kv0613("gpt-4-32k-0613", 32768, isChatCompletion = true),
gpt35Turbo("gpt-3.5-turbo", 4096),
gpt35Turbo("gpt-3.5-turbo-instruct", 4096),
davinci("text-davinci-003", 4096),
curie("text-curie-001", 2048),
babbage("text-babbage-001", 2048),
Expand Down

0 comments on commit b7ccf4e

Please sign in to comment.