@dugleelabs/copair 1.8.0 → 1.9.0

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/api.d.ts CHANGED
@@ -82,7 +82,10 @@ declare const ProviderConfigSchema: z.ZodObject<{
82
82
  timeout_ms: z.ZodOptional<z.ZodNumber>;
83
83
  }, z.core.$strip>;
84
84
  declare const SmallModelsConfigSchema: z.ZodObject<{
85
- model_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
85
+ tier_overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<{
86
+ small: "small";
87
+ large: "large";
88
+ }>>>;
86
89
  max_tool_calls: z.ZodOptional<z.ZodNumber>;
87
90
  }, z.core.$strip>;
88
91
  declare const CopairConfigSchema: z.ZodObject<{
@@ -177,7 +180,10 @@ declare const CopairConfigSchema: z.ZodObject<{
177
180
  provider_timeout_ms: z.ZodDefault<z.ZodNumber>;
178
181
  }, z.core.$strip>>;
179
182
  small_models: z.ZodOptional<z.ZodObject<{
180
- model_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
183
+ tier_overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEnum<{
184
+ small: "small";
185
+ large: "large";
186
+ }>>>;
181
187
  max_tool_calls: z.ZodOptional<z.ZodNumber>;
182
188
  }, z.core.$strip>>;
183
189
  }, z.core.$strip>;