Open TimRivoli opened 1 year ago
You can edit in file app/src/main/java/com/chatgptlite/wanted/models/TextCompletionsParam.kt:
data class TextCompletionsParam(
@SerializedName("prompt")
val promptText: String = "",
@SerializedName("temperature")
val temperature: Double = 0.9,
@SerializedName("top_p")
val topP: Double = 1.0,
@SerializedName("n")
val n: Int = 1,
@SerializedName("stream")
var stream: Boolean = true,
@SerializedName("maxTokens")
val maxTokens: Int = 2048,
@SerializedName("model")
val model: GPTModel = GPTModel.gpt35Turbo, <--- set default model here
@SerializedName("messages")
val messagesTurbo: List<MessageTurbo> = emptyList(),
)
Yes, I know I can update it there. I just think it would be nice to select it in settings. Also temperature. And a default system message.
It would be nice to have an option under Settings to pick the GPT model. 3.5 Turbo is nice but I would like to test different models, at least 4.0.