@lota-sdk/shared 0.4.14 → 0.4.16

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lota-sdk/shared",
3
- "version": "0.4.14",
3
+ "version": "0.4.16",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -1,18 +1,16 @@
1
- export const OPENAI_REASONING_MODEL_ID = 'openrouter/openai/gpt-5.4' as const
1
+ export const OPENAI_REASONING_MODEL_ID = 'gpt-5.4' as const
2
2
 
3
- export const OPENROUTER_GEMINI_PRO_MODEL_ID = 'openrouter/google/gemini-3.1-pro-preview' as const
4
- export const OPENROUTER_GEMINI_FLASH_MODEL_ID = 'openrouter/google/gemini-3-flash-preview' as const
5
- export const OPENROUTER_TEAM_AGENT_MODEL_ID = 'openrouter/google/gemini-3-flash-preview' as const
6
- export const OPENROUTER_WEB_RESEARCH_MODEL_ID = 'openrouter/stepfun/step-3.5-flash' as const
7
- export const OPENROUTER_FAST_REASONING_MODEL_ID = 'openrouter/qwen/qwen3.5-flash-02-23' as const
3
+ export const OPENROUTER_GEMINI_PRO_MODEL_ID = 'gpt-5.4' as const
4
+ export const OPENROUTER_GEMINI_FLASH_MODEL_ID = 'gpt-5.4-mini' as const
5
+ export const OPENROUTER_TEAM_AGENT_MODEL_ID = 'gpt-5.4-mini' as const
6
+ export const OPENROUTER_WEB_RESEARCH_MODEL_ID = 'gpt-5.4' as const
7
+ export const OPENROUTER_FAST_REASONING_MODEL_ID = 'gpt-5.4-nano' as const
8
8
  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(effort: string) {
13
- return {
14
- openai: { forceReasoning: true, reasoningEffort: effort, reasoningSummary: AI_GATEWAY_REASONING_SUMMARY_LEVEL },
15
- } as const
12
+ export function makeOpenRouterReasoningOptions(_effort: string) {
13
+ return {} as const
16
14
  }
17
15
 
18
16
  export const OPENAI_HIGH_REASONING_PROVIDER_OPTIONS = makeOpenRouterReasoningOptions('high')