@thanh01.pmt/curriculum-kit 1.4.28 → 1.4.30

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.
Files changed (39) hide show
  1. package/dist/ai/index.cjs +19 -2
  2. package/dist/ai/index.cjs.map +1 -1
  3. package/dist/ai/index.d.cts +2 -2
  4. package/dist/ai/index.d.ts +2 -2
  5. package/dist/ai/index.mjs +19 -2
  6. package/dist/ai/index.mjs.map +1 -1
  7. package/dist/index.cjs +49 -3
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.cts +5 -5
  10. package/dist/index.d.ts +5 -5
  11. package/dist/index.mjs +49 -3
  12. package/dist/index.mjs.map +1 -1
  13. package/dist/media/index.cjs +19 -2
  14. package/dist/media/index.cjs.map +1 -1
  15. package/dist/media/index.d.cts +1 -1
  16. package/dist/media/index.d.ts +1 -1
  17. package/dist/media/index.mjs +19 -2
  18. package/dist/media/index.mjs.map +1 -1
  19. package/dist/pipeline/index.cjs.map +1 -1
  20. package/dist/pipeline/index.d.cts +1 -1
  21. package/dist/pipeline/index.d.ts +1 -1
  22. package/dist/pipeline/index.mjs.map +1 -1
  23. package/dist/publishers/index.d.cts +1 -1
  24. package/dist/publishers/index.d.ts +1 -1
  25. package/dist/storage/index.cjs +27 -0
  26. package/dist/storage/index.cjs.map +1 -1
  27. package/dist/storage/index.d.cts +11 -2
  28. package/dist/storage/index.d.ts +11 -2
  29. package/dist/storage/index.mjs +27 -0
  30. package/dist/storage/index.mjs.map +1 -1
  31. package/dist/{streamRunner-kpS4MZP1.d.cts → streamRunner-DYHFhNUr.d.cts} +1 -1
  32. package/dist/{streamRunner-kpS4MZP1.d.ts → streamRunner-DYHFhNUr.d.ts} +1 -1
  33. package/dist/{types-BUJGYiep.d.cts → types-Bgk-C4K2.d.cts} +11 -0
  34. package/dist/{types-BUJGYiep.d.ts → types-Bgk-C4K2.d.ts} +11 -0
  35. package/dist/workflow/index.cjs +21 -3
  36. package/dist/workflow/index.cjs.map +1 -1
  37. package/dist/workflow/index.mjs +21 -3
  38. package/dist/workflow/index.mjs.map +1 -1
  39. package/package.json +1 -1
@@ -708,6 +708,13 @@ Guidelines:
708
708
  });
709
709
  }
710
710
  }
711
+ if (!options.customInference && resolveApiKey2("CURRICULUM_KIT_REQUIRE_CUSTOM_INFERENCE") === "1") {
712
+ throw createAiInferenceError({
713
+ errorCode: "ERR_CUSTOM_INFERENCE_REQUIRED",
714
+ message: "customInference is REQUIRED (CURRICULUM_KIT_REQUIRE_CUSTOM_INFERENCE=1): pass buildKitCustomInference(...) so every LLM call flows through the host AI SDK gateway and its unified Langfuse tracing. Raw-fetch provider routes are disabled by mandate.",
715
+ rawError: { mandate: "CURRICULUM_KIT_REQUIRE_CUSTOM_INFERENCE", hasCustomInference: false }
716
+ });
717
+ }
711
718
  const formattedMessages = [
712
719
  { role: "system", content: systemInstruction },
713
720
  ...messages.map((m) => ({
@@ -731,7 +738,12 @@ Guidelines:
731
738
  const unique9RouterModels = Array.from(new Set(candidateModels));
732
739
  for (const model of unique9RouterModels) {
733
740
  try {
734
- const idle = createStreamAbortController({ idleMs: 45e3, totalMs: 3e5 });
741
+ const r9Idle = options.idleTimeoutMs ?? (Number(process.env.ARTIFACT_STREAM_IDLE_TIMEOUT_MS || process.env.STREAM_IDLE_TIMEOUT_MS) || 0) ?? 0;
742
+ const r9Total = options.timeoutMs ?? (Number(process.env.ARTIFACT_STREAM_TOTAL_TIMEOUT_MS || process.env.STREAM_TOTAL_TIMEOUT_MS) || 0) ?? 0;
743
+ const idle = createStreamAbortController({
744
+ idleMs: r9Idle > 0 ? r9Idle : 9e4,
745
+ totalMs: r9Total > 0 ? r9Total : 3e5
746
+ });
735
747
  const res = await fetch(`${ninerouterBaseUrl}/chat/completions`, {
736
748
  method: "POST",
737
749
  headers: {
@@ -974,7 +986,12 @@ Guidelines:
974
986
  try {
975
987
  const rawUrl = resolveApiKey2("NINEROUTER_BASE_URL") || resolveApiKey2("NINE_ROUTER_BASE_URL") || "https://ai-router.orchable.app/v1";
976
988
  const fbBaseUrl = rawUrl.replace(/["']/g, "").replace(/\/$/, "");
977
- const idle = createStreamAbortController({ idleMs: 45e3, totalMs: 3e5 });
989
+ const fbIdle = options.idleTimeoutMs ?? (Number(process.env.ARTIFACT_STREAM_IDLE_TIMEOUT_MS || process.env.STREAM_IDLE_TIMEOUT_MS) || 0) ?? 0;
990
+ const fbTotal = options.timeoutMs ?? (Number(process.env.ARTIFACT_STREAM_TOTAL_TIMEOUT_MS || process.env.STREAM_TOTAL_TIMEOUT_MS) || 0) ?? 0;
991
+ const idle = createStreamAbortController({
992
+ idleMs: fbIdle > 0 ? fbIdle : 9e4,
993
+ totalMs: fbTotal > 0 ? fbTotal : 3e5
994
+ });
978
995
  const res = await fetch(`${fbBaseUrl}/chat/completions`, {
979
996
  method: "POST",
980
997
  headers: {