Skip to content

Commit

Permalink
Merge pull request #45 from pmdyy/main
Browse files Browse the repository at this point in the history
Add `gpt-3.5-turbo-16k` model
  • Loading branch information
arcticfly authored Jul 4, 2023
2 parents 3b65f72 + df1e5b3 commit dcb244f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/common/ModelDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ const ModelDropdown = () => {
value={selectedModel || ''}
onChange={(e) => updateSettings({ selectedModel: e.target.value })}
>
<option value="gpt-3.5-turbo">GPT-3.5 Turbo</option>
<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>
<option value='gpt-4'>GPT-4</option>
</Select>
);
};
Expand Down

0 comments on commit dcb244f

Please sign in to comment.