@lota-sdk/shared 0.4.19 → 0.4.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/constants/model.ts +5 -3
package/package.json
CHANGED
package/src/constants/model.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const OPENAI_REASONING_MODEL_ID = 'gpt-5.
|
|
1
|
+
export const OPENAI_REASONING_MODEL_ID = 'gpt-5.5' as const
|
|
2
2
|
|
|
3
3
|
export const OPENROUTER_GEMINI_PRO_MODEL_ID = 'gpt-5.4' as const
|
|
4
4
|
export const OPENROUTER_GEMINI_FLASH_MODEL_ID = 'gpt-5.4-mini' as const
|
|
@@ -9,8 +9,10 @@ export const OPENROUTER_FAST_RERANK_MODEL_ID = 'cohere/rerank-4-fast' as const
|
|
|
9
9
|
|
|
10
10
|
export const AI_GATEWAY_REASONING_SUMMARY_LEVEL = 'detailed' as const
|
|
11
11
|
|
|
12
|
-
export function makeOpenRouterReasoningOptions(
|
|
13
|
-
return {
|
|
12
|
+
export function makeOpenRouterReasoningOptions(effort: string) {
|
|
13
|
+
return {
|
|
14
|
+
openai: { forceReasoning: true, reasoningEffort: effort, reasoningSummary: AI_GATEWAY_REASONING_SUMMARY_LEVEL },
|
|
15
|
+
} as const
|
|
14
16
|
}
|
|
15
17
|
|
|
16
18
|
export const OPENAI_HIGH_REASONING_PROVIDER_OPTIONS = makeOpenRouterReasoningOptions('high')
|