-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added openai gpt4o mini model #1814
base: main
Are you sure you want to change the base?
Changes from 3 commits
ea2cf68
6256a11
6d3e97f
f1f45a2
b1fc878
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,6 +157,12 @@ export const CHAT_SETTING_LIMITS: Record<LLMID, ChatSettingLimits> = { | |
MAX_TOKEN_OUTPUT_LENGTH: 4096, | ||
MAX_CONTEXT_LENGTH: 128000 | ||
}, | ||
"gpt-4o-mini": { | ||
MIN_TEMPERATURE: 0.0, | ||
MAX_TEMPERATURE: 2.0, | ||
MAX_TOKEN_OUTPUT_LENGTH: 4096, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By the way There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just updated it! thanks 🙌 |
||
MAX_CONTEXT_LENGTH: 128000 | ||
}, | ||
|
||
// PERPLEXITY MODELS | ||
"pplx-7b-online": { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mini supports 16k output tokens - would this limit it to 4k?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it will.
It should be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it's fixed! Thanks.