@probeo/anymodel 0.5.2 → 0.5.3

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/cli.cjs CHANGED
@@ -2025,7 +2025,7 @@ var BatchManager = class {
2025
2025
  const id = generateId("batch");
2026
2026
  const now = (/* @__PURE__ */ new Date()).toISOString();
2027
2027
  const providerName = request.model.split("/")[0] || "unknown";
2028
- const native = this.getNativeBatchAdapter(request.model);
2028
+ const native = request.batch_mode !== "concurrent" ? this.getNativeBatchAdapter(request.model) : null;
2029
2029
  const batchMode = native ? "native" : "concurrent";
2030
2030
  const batch = {
2031
2031
  id,