@jaypie/llm 1.2.29 → 1.2.32

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.
@@ -41,7 +41,7 @@ export declare const PROVIDER: {
41
41
  readonly OPENAI: {
42
42
  readonly MODEL: {
43
43
  readonly DEFAULT: "gpt-5.4";
44
- readonly LARGE: "gpt-5.4";
44
+ readonly LARGE: "gpt-5.5";
45
45
  readonly SMALL: "gpt-5.4-mini";
46
46
  readonly TINY: "gpt-5.4-nano";
47
47
  };
@@ -81,14 +81,14 @@ export type LlmProviderName = typeof PROVIDER.ANTHROPIC.NAME | typeof PROVIDER.G
81
81
  export declare const DEFAULT: {
82
82
  readonly MODEL: {
83
83
  readonly BASE: "gpt-5.4";
84
- readonly LARGE: "gpt-5.4";
84
+ readonly LARGE: "gpt-5.5";
85
85
  readonly SMALL: "gpt-5.4-mini";
86
86
  readonly TINY: "gpt-5.4-nano";
87
87
  };
88
88
  readonly PROVIDER: {
89
89
  readonly MODEL: {
90
90
  readonly DEFAULT: "gpt-5.4";
91
- readonly LARGE: "gpt-5.4";
91
+ readonly LARGE: "gpt-5.5";
92
92
  readonly SMALL: "gpt-5.4-mini";
93
93
  readonly TINY: "gpt-5.4-nano";
94
94
  };
@@ -98,8 +98,8 @@ export declare const DEFAULT: {
98
98
  };
99
99
  export declare const ALL: {
100
100
  readonly BASE: readonly ["claude-sonnet-4-6", "gemini-3.1-pro-preview", "gpt-5.4", "grok-4.20-0309-reasoning"];
101
- readonly COMBINED: readonly ("claude-sonnet-4-6" | "claude-opus-4-7" | "claude-haiku-4-5" | "gemini-3.1-pro-preview" | "gemini-3-flash-preview" | "gemini-3.1-flash-lite-preview" | "gpt-5.4" | "gpt-5.4-mini" | "gpt-5.4-nano" | "grok-4.20-0309-reasoning" | "grok-4.20-0309-non-reasoning" | "grok-4-1-fast-non-reasoning")[];
102
- readonly LARGE: readonly ["claude-opus-4-7", "gemini-3.1-pro-preview", "gpt-5.4", "grok-4.20-0309-reasoning"];
101
+ readonly COMBINED: readonly ("claude-sonnet-4-6" | "claude-opus-4-7" | "claude-haiku-4-5" | "gemini-3.1-pro-preview" | "gemini-3-flash-preview" | "gemini-3.1-flash-lite-preview" | "gpt-5.4" | "gpt-5.5" | "gpt-5.4-mini" | "gpt-5.4-nano" | "grok-4.20-0309-reasoning" | "grok-4.20-0309-non-reasoning" | "grok-4-1-fast-non-reasoning")[];
102
+ readonly LARGE: readonly ["claude-opus-4-7", "gemini-3.1-pro-preview", "gpt-5.5", "grok-4.20-0309-reasoning"];
103
103
  readonly SMALL: readonly ["claude-sonnet-4-6", "gemini-3-flash-preview", "gpt-5.4-mini", "grok-4.20-0309-non-reasoning"];
104
104
  readonly TINY: readonly ["claude-haiku-4-5", "gemini-3.1-flash-lite-preview", "gpt-5.4-nano", "grok-4-1-fast-non-reasoning"];
105
105
  };