Skip to content

Commit dcb244f

Browse files
authored
Merge pull request #45 from pmdyy/main
Add `gpt-3.5-turbo-16k` model
2 parents 3b65f72 + df1e5b3 commit dcb244f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/common/ModelDropdown.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ const ModelDropdown = () => {
2020
value={selectedModel || ''}
2121
onChange={(e) => updateSettings({ selectedModel: e.target.value })}
2222
>
23-
<option value="gpt-3.5-turbo">GPT-3.5 Turbo</option>
24-
<option value="gpt-4">GPT-4</option>
23+
<option value='gpt-3.5-turbo'>GPT-3.5 Turbo</option>
24+
<option value='gpt-3.5-turbo-16k'>GPT-3.5 Turbo (16k)</option>
25+
<option value='gpt-4'>GPT-4</option>
2526
</Select>
2627
);
2728
};

0 commit comments

Comments
 (0)