@wrongstack/cli 0.305.1 → 0.306.2

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.
@@ -148,6 +148,20 @@ export interface ProviderDeps {
148
148
  id: string;
149
149
  family: string;
150
150
  models: string[];
151
+ modelDetails?: Record<string, {
152
+ name?: string | undefined;
153
+ description?: string | undefined;
154
+ tools?: boolean | undefined;
155
+ vision?: boolean | undefined;
156
+ reasoning?: boolean | undefined;
157
+ maxContext?: number | undefined;
158
+ maxOutput?: number | undefined;
159
+ inputCost?: number | undefined;
160
+ outputCost?: number | undefined;
161
+ cacheReadCost?: number | undefined;
162
+ knowledge?: string | undefined;
163
+ releaseDate?: string | undefined;
164
+ }> | undefined;
151
165
  }>>;
152
166
  switchProviderAndModel: (providerId: string, modelId: string) => string | null | Promise<string | null>;
153
167
  onModelContextResolved?: ((providerId: string, modelId: string, maxContext: number) => void) | undefined;