mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-03 00:58:50 +01:00
🧠 feat: 'Extra High' Reasoning Effort OpenAI Parameter (#11171)
This commit is contained in:
parent
a7aa4dc91b
commit
d3b5020dd9
3 changed files with 4 additions and 0 deletions
|
|
@ -1019,6 +1019,7 @@
|
|||
"com_ui_hide_password": "Hide password",
|
||||
"com_ui_hide_qr": "Hide QR Code",
|
||||
"com_ui_high": "High",
|
||||
"com_ui_xhigh": "Extra High",
|
||||
"com_ui_host": "Host",
|
||||
"com_ui_icon": "Icon",
|
||||
"com_ui_idea": "Ideas",
|
||||
|
|
|
|||
|
|
@ -239,6 +239,7 @@ const openAIParams: Record<string, SettingDefinition> = {
|
|||
ReasoningEffort.low,
|
||||
ReasoningEffort.medium,
|
||||
ReasoningEffort.high,
|
||||
ReasoningEffort.xhigh,
|
||||
],
|
||||
enumMappings: {
|
||||
[ReasoningEffort.unset]: 'com_ui_auto',
|
||||
|
|
@ -247,6 +248,7 @@ const openAIParams: Record<string, SettingDefinition> = {
|
|||
[ReasoningEffort.low]: 'com_ui_low',
|
||||
[ReasoningEffort.medium]: 'com_ui_medium',
|
||||
[ReasoningEffort.high]: 'com_ui_high',
|
||||
[ReasoningEffort.xhigh]: 'com_ui_xhigh',
|
||||
},
|
||||
optionType: 'model',
|
||||
columnSpan: 4,
|
||||
|
|
|
|||
|
|
@ -166,6 +166,7 @@ export enum ReasoningEffort {
|
|||
low = 'low',
|
||||
medium = 'medium',
|
||||
high = 'high',
|
||||
xhigh = 'xhigh',
|
||||
}
|
||||
|
||||
export enum ReasoningSummary {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue