@crewx/sdk 0.9.0-rc.87 → 0.9.0-rc.88

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.
@@ -1,6 +1,10 @@
1
1
  import type { ModelApiPricing } from './pricing.types.js';
2
2
  export declare const MODEL_TIERS: readonly ["flagship", "balanced", "speed"];
3
3
  export type ModelTier = (typeof MODEL_TIERS)[number];
4
+ export declare const EFFORT_LEVELS: readonly ["none", "minimal", "low", "medium", "high", "xhigh", "max", "ultra"];
5
+ export type EffortLevel = (typeof EFFORT_LEVELS)[number];
6
+ export type KnownEffortLevel = EffortLevel;
7
+ export declare const PROVIDER_ARGV_EFFORTS: Record<string, readonly string[]>;
4
8
  export declare const MODEL_CATALOG_VERSION = 21;
5
9
  export declare const MODEL_CATALOG_UPDATED = "2026-09-02T00:00:00Z";
6
10
  export interface ModelCatalogEntry {