@ljoukov/llm 7.0.15 → 7.0.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/dist/index.cjs CHANGED
@@ -5334,6 +5334,8 @@ function resolveOpenAiReasoningEffort(modelId, thinkingLevel) {
5334
5334
  case "medium":
5335
5335
  return "medium";
5336
5336
  case "high":
5337
+ return "high";
5338
+ case "xhigh":
5337
5339
  return "xhigh";
5338
5340
  }
5339
5341
  }
@@ -5351,7 +5353,7 @@ function toOpenAiReasoningEffort(effort) {
5351
5353
  case "high":
5352
5354
  return "high";
5353
5355
  case "xhigh":
5354
- return "high";
5356
+ return "xhigh";
5355
5357
  }
5356
5358
  }
5357
5359
  function resolveOpenAiVerbosity(modelId) {
@@ -7644,6 +7646,7 @@ function toGeminiThinkingLevel(thinkingLevel) {
7644
7646
  case "medium":
7645
7647
  return import_genai2.ThinkingLevel.MEDIUM;
7646
7648
  case "high":
7649
+ case "xhigh":
7647
7650
  return import_genai2.ThinkingLevel.HIGH;
7648
7651
  }
7649
7652
  }
@@ -7686,6 +7689,7 @@ function resolveGeminiThinkingBudget(modelId, thinkingLevel) {
7686
7689
  case "medium":
7687
7690
  return 4096;
7688
7691
  case "high":
7692
+ case "xhigh":
7689
7693
  return 32768;
7690
7694
  }
7691
7695
  }
@@ -7696,6 +7700,7 @@ function resolveGeminiThinkingBudget(modelId, thinkingLevel) {
7696
7700
  case "medium":
7697
7701
  return 8192;
7698
7702
  case "high":
7703
+ case "xhigh":
7699
7704
  return 24576;
7700
7705
  }
7701
7706
  }
@@ -7706,6 +7711,7 @@ function resolveGeminiThinkingBudget(modelId, thinkingLevel) {
7706
7711
  case "medium":
7707
7712
  return 8192;
7708
7713
  case "high":
7714
+ case "xhigh":
7709
7715
  return 16384;
7710
7716
  }
7711
7717
  }