@probeo/anymodel 0.5.1 → 0.5.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.
package/dist/index.d.cts CHANGED
@@ -190,6 +190,7 @@ interface BatchRequestItem {
190
190
  response_format?: ResponseFormat;
191
191
  tools?: Tool[];
192
192
  tool_choice?: ToolChoice;
193
+ service_tier?: 'auto' | 'flex';
193
194
  }
194
195
  interface BatchCreateRequest {
195
196
  model: string;
@@ -203,6 +204,7 @@ interface BatchCreateRequest {
203
204
  response_format?: ResponseFormat;
204
205
  tools?: Tool[];
205
206
  tool_choice?: ToolChoice;
207
+ service_tier?: 'auto' | 'flex';
206
208
  };
207
209
  webhook?: string;
208
210
  }
package/dist/index.d.ts CHANGED
@@ -190,6 +190,7 @@ interface BatchRequestItem {
190
190
  response_format?: ResponseFormat;
191
191
  tools?: Tool[];
192
192
  tool_choice?: ToolChoice;
193
+ service_tier?: 'auto' | 'flex';
193
194
  }
194
195
  interface BatchCreateRequest {
195
196
  model: string;
@@ -203,6 +204,7 @@ interface BatchCreateRequest {
203
204
  response_format?: ResponseFormat;
204
205
  tools?: Tool[];
205
206
  tool_choice?: ToolChoice;
207
+ service_tier?: 'auto' | 'flex';
206
208
  };
207
209
  webhook?: string;
208
210
  }
package/dist/index.js CHANGED
@@ -2229,7 +2229,8 @@ var BatchManager = class {
2229
2229
  stop: item.stop ?? options?.stop,
2230
2230
  response_format: item.response_format ?? options?.response_format,
2231
2231
  tools: item.tools ?? options?.tools,
2232
- tool_choice: item.tool_choice ?? options?.tool_choice
2232
+ tool_choice: item.tool_choice ?? options?.tool_choice,
2233
+ service_tier: item.service_tier ?? options?.service_tier
2233
2234
  };
2234
2235
  let result;
2235
2236
  try {