Skip to content

Commit

Permalink
da
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitanit committed May 16, 2024
1 parent 5274c87 commit 766ffb8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/routes/ChatRoute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,10 @@ export function ChatRoute() {
})}
data={[
{ label: 'GPT-3.5', value: 'gpt-3.5-turbo' },
{ label: 'GPT-4', value: 'gpt-4' }
{ label: 'GPT-4', value: 'gpt-4' },
{ label: 'GPT-4o', value: 'gpt-4o'}
]}
onChange={async (value: 'gpt-3.5-turbo' | 'gpt-4') => {
onChange={async (value: 'gpt-3.5-turbo' | 'gpt-4' | 'gpt-4o') => {
const model = value;
try {
await db.settings.update("general", {
Expand Down

0 comments on commit 766ffb8

Please sign in to comment.