Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
josStorer committed Aug 6, 2024
1 parent 9d63a39 commit 6c645b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/background/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ Browser.runtime.onMessage.addListener(async (message, sender) => {
break
}
case 'NEW_URL': {
const newTab = await Browser.tabs.create({
await Browser.tabs.create({
url: message.data.url,
pinned: message.data.pinned,
})
Expand Down
4 changes: 2 additions & 2 deletions src/config/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ export const Models = {
chatgptFree4o: { value: 'gpt-4o', desc: 'ChatGPT (Web, GPT-4o)' },
chatgptFree4oMini: { value: 'gpt-4o-mini', desc: 'ChatGPT (Web, GPT-4o mini)' },

chatgptPlus4: { value: 'gpt-4', desc: 'ChatGPT (Web, GPT-4 All in one)' },
chatgptPlus4Browsing: { value: 'gpt-4-gizmo', desc: 'ChatGPT (Web, GPT-4)' },
chatgptPlus4: { value: 'gpt-4', desc: 'ChatGPT (Web, GPT-4)' },
chatgptPlus4Browsing: { value: 'gpt-4', desc: 'ChatGPT (Web, GPT-4)' }, // for compatibility

chatgptApi35: { value: 'gpt-3.5-turbo', desc: 'ChatGPT (GPT-3.5-turbo)' },
chatgptApi35_16k: { value: 'gpt-3.5-turbo-16k', desc: 'ChatGPT (GPT-3.5-turbo-16k)' },
Expand Down

0 comments on commit 6c645b8

Please sign in to comment.