Skip to content

Commit

Permalink
feat: add (128k max tokens) as a default model for new plugin users. …
Browse files Browse the repository at this point in the history
…Existing users can add with 128000 tokens in their AI Assistant menu.
  • Loading branch information
chhoumann committed Jul 18, 2024
1 parent abd6333 commit 49c99d6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ai/Provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ const OpenAIProvider: AIProvider = {
name: "gpt-4o",
maxTokens: 128000,
},
{
name: "gpt-4o-mini",
maxTokens: 128000,
},
],
};

Expand Down

0 comments on commit 49c99d6

Please sign in to comment.