We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 771c80b commit 1a5c106Copy full SHA for 1a5c106
1 file changed
Copilot for Xcode/OpenAIView.swift
@@ -70,7 +70,11 @@ struct OpenAIView: View {
70
71
HStack {
72
if let model = ChatGPTModel(rawValue: settings.chatGPTModel) {
73
- Stepper(value: $settings.chatGPTMaxToken, in: 0...model.maxToken, step: 1) {
+ Stepper(
74
+ value: $settings.chatGPTMaxToken,
75
+ in: 0...model.maxToken,
76
+ step: 1
77
+ ) {
78
Text("Max Token")
79
}
80
0 commit comments