@thanh01.pmt/curriculum-kit 1.4.27 → 1.4.29

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 (40) hide show
  1. package/dist/ai/index.cjs +46 -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 +46 -2
  6. package/dist/ai/index.mjs.map +1 -1
  7. package/dist/index.cjs +76 -3
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.cts +4 -4
  10. package/dist/index.d.ts +4 -4
  11. package/dist/index.mjs +76 -3
  12. package/dist/index.mjs.map +1 -1
  13. package/dist/media/index.cjs +46 -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 +46 -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.ts → types-Bgk-C4K2.d.cts} +11 -0
  34. package/dist/{types-BUJGYiep.d.cts → types-Bgk-C4K2.d.ts} +11 -0
  35. package/dist/workflow/index.cjs +48 -3
  36. package/dist/workflow/index.cjs.map +1 -1
  37. package/dist/workflow/index.mjs +48 -3
  38. package/dist/workflow/index.mjs.map +1 -1
  39. package/package.json +23 -22
  40. package/LICENSE +0 -21
package/dist/ai/index.cjs CHANGED
@@ -487,7 +487,12 @@ Guidelines:
487
487
  const unique9RouterModels = Array.from(new Set(candidateModels));
488
488
  for (const model of unique9RouterModels) {
489
489
  try {
490
- const idle = createStreamAbortController({ idleMs: 45e3, totalMs: 3e5 });
490
+ const r9Idle = options.idleTimeoutMs ?? (Number(process.env.ARTIFACT_STREAM_IDLE_TIMEOUT_MS || process.env.STREAM_IDLE_TIMEOUT_MS) || 0) ?? 0;
491
+ const r9Total = options.timeoutMs ?? (Number(process.env.ARTIFACT_STREAM_TOTAL_TIMEOUT_MS || process.env.STREAM_TOTAL_TIMEOUT_MS) || 0) ?? 0;
492
+ const idle = createStreamAbortController({
493
+ idleMs: r9Idle > 0 ? r9Idle : 9e4,
494
+ totalMs: r9Total > 0 ? r9Total : 3e5
495
+ });
491
496
  const res = await fetch(`${ninerouterBaseUrl}/chat/completions`, {
492
497
  method: "POST",
493
498
  headers: {
@@ -726,7 +731,46 @@ Guidelines:
726
731
  );
727
732
  for (const target of fallbackChain) {
728
733
  const { provider, model } = target;
729
- if (provider === "nvidia" && nvidiaKey && isProviderEnabled("nvidia")) {
734
+ if ((provider === "9router" || provider === "ninerouter") && ninerouterKey && isProviderEnabled("9router")) {
735
+ try {
736
+ const rawUrl = resolveApiKey("NINEROUTER_BASE_URL") || resolveApiKey("NINE_ROUTER_BASE_URL") || "https://ai-router.orchable.app/v1";
737
+ const fbBaseUrl = rawUrl.replace(/["']/g, "").replace(/\/$/, "");
738
+ const fbIdle = options.idleTimeoutMs ?? (Number(process.env.ARTIFACT_STREAM_IDLE_TIMEOUT_MS || process.env.STREAM_IDLE_TIMEOUT_MS) || 0) ?? 0;
739
+ const fbTotal = options.timeoutMs ?? (Number(process.env.ARTIFACT_STREAM_TOTAL_TIMEOUT_MS || process.env.STREAM_TOTAL_TIMEOUT_MS) || 0) ?? 0;
740
+ const idle = createStreamAbortController({
741
+ idleMs: fbIdle > 0 ? fbIdle : 9e4,
742
+ totalMs: fbTotal > 0 ? fbTotal : 3e5
743
+ });
744
+ const res = await fetch(`${fbBaseUrl}/chat/completions`, {
745
+ method: "POST",
746
+ headers: {
747
+ "Authorization": `Bearer ${ninerouterKey}`,
748
+ "Content-Type": "application/json"
749
+ },
750
+ body: JSON.stringify({
751
+ model,
752
+ messages: formattedMessages,
753
+ max_tokens: maxTokens,
754
+ temperature,
755
+ stream: true,
756
+ stream_options: { include_usage: true }
757
+ }),
758
+ signal: idle.signal
759
+ });
760
+ if (res.ok) {
761
+ const text = await processOpenAISSEStream(res, onChunk, idle);
762
+ if (text && text.trim()) {
763
+ console.log(`[streamRunner] \u2705 Designated fallback 9Router (${model}) succeeded!`);
764
+ return text;
765
+ }
766
+ } else {
767
+ const errText = await res.text().catch(() => "");
768
+ providerErrors[`designated_fallback_9router_${model}`] = `HTTP ${res.status}: ${errText.slice(0, 120)}`;
769
+ }
770
+ } catch (e) {
771
+ providerErrors[`designated_fallback_9router_${model}`] = e?.message || "Network error";
772
+ }
773
+ } else if (provider === "nvidia" && nvidiaKey && isProviderEnabled("nvidia")) {
730
774
  try {
731
775
  const nvdIdle = options.idleTimeoutMs ?? 18e4;
732
776
  const nvdTotal = options.timeoutMs ?? 6e5;