We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b65f72 + df1e5b3 commit dcb244fCopy full SHA for dcb244f
1 file changed
src/common/ModelDropdown.tsx
@@ -20,8 +20,9 @@ const ModelDropdown = () => {
20
value={selectedModel || ''}
21
onChange={(e) => updateSettings({ selectedModel: e.target.value })}
22
>
23
- <option value="gpt-3.5-turbo">GPT-3.5 Turbo</option>
24
- <option value="gpt-4">GPT-4</option>
+ <option value='gpt-3.5-turbo'>GPT-3.5 Turbo</option>
+ <option value='gpt-3.5-turbo-16k'>GPT-3.5 Turbo (16k)</option>
25
+ <option value='gpt-4'>GPT-4</option>
26
</Select>
27
);
28
};
0 commit comments