@jaypie/llm 1.3.11 → 1.3.13

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.
@@ -21,6 +21,13 @@ export declare const MODEL: {
21
21
  SONNET: string;
22
22
  HAIKU: string;
23
23
  MYTHOS: string;
24
+ FIREWORKS: {
25
+ DEEPSEEK: string;
26
+ GLM: string;
27
+ KIMI: string;
28
+ MINIMAX: string;
29
+ QWEN: string;
30
+ };
24
31
  GEMINI_FLASH: string;
25
32
  GEMINI_FLASH_LITE: string;
26
33
  GEMINI_PRO: string;
@@ -81,6 +88,13 @@ export declare const PROVIDER: {
81
88
  readonly SCHEMA_VERSION: "v2";
82
89
  };
83
90
  };
91
+ readonly FIREWORKS: {
92
+ readonly API_KEY: "FIREWORKS_API_KEY";
93
+ readonly BASE_URL: "https://api.fireworks.ai/inference/v1";
94
+ readonly DEFAULT: string;
95
+ readonly MODEL_MATCH_WORDS: readonly ["fireworks"];
96
+ readonly NAME: "fireworks";
97
+ };
84
98
  /** @deprecated Use PROVIDER.GOOGLE — "Google" is the provider; Gemini is the model family */
85
99
  readonly GEMINI: {
86
100
  readonly DEFAULT: string;
@@ -159,7 +173,7 @@ export declare const PROVIDER: {
159
173
  readonly NAME: "xai";
160
174
  };
161
175
  };
162
- export type LlmProviderName = typeof PROVIDER.ANTHROPIC.NAME | typeof PROVIDER.BEDROCK.NAME | typeof PROVIDER.GOOGLE.NAME | typeof PROVIDER.OPENAI.NAME | typeof PROVIDER.OPENROUTER.NAME | typeof PROVIDER.XAI.NAME;
176
+ export type LlmProviderName = typeof PROVIDER.ANTHROPIC.NAME | typeof PROVIDER.BEDROCK.NAME | typeof PROVIDER.FIREWORKS.NAME | typeof PROVIDER.GOOGLE.NAME | typeof PROVIDER.OPENAI.NAME | typeof PROVIDER.OPENROUTER.NAME | typeof PROVIDER.XAI.NAME;
163
177
  export declare const DEFAULT: {
164
178
  /** @deprecated Size tiers are retired in 2.0. Use DEFAULT.PROVIDER.DEFAULT, or pick a specific model from MODEL.*. */
165
179
  readonly MODEL: {