lambiengcode / compose-chatgpt-kotlin-android-chatbot

Compose ChatGPT Kotlin - Android Chatbot using Kotlin + Jetpack Compose + Coroutine + MVVM + Retrofit2 + OpenAI's GPT-3 API. Allow stream response from ChatGPT API.
https://youtube.com/shorts/esLh-n3Ao5U
MIT License
217 stars 31 forks source link

The ChatGPT 3.5 Turbo model should be marked as a completions model #12

Open TimRivoli opened 1 year ago

TimRivoli commented 1 year ago

First off, very nice work! Second, GPT 3.5 Turbo is a completions model so I made this fix to make the app work for me. gpt35Turbo("gpt-3.5-turbo", 4096, isChatCompletion = true)

lambiengcode commented 1 year ago

yes, it's my mistake, thank you @TimRivoli. I'll fix it tomorrow.

4niso commented 4 months ago

Thank you @TimRivoli, this work form me.