@gendive/chatllm 0.21.2 → 0.21.4

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.
@@ -2738,6 +2738,7 @@ ${capabilityFeatures.join("\n\n")}
2738
2738
  const recentCount = msgCount - (session.compressionState.summaryAfterIndex || 0);
2739
2739
  if (recentCount <= 2) return true;
2740
2740
  }
2741
+ if (enableChecklist && !autoExecuteChecklist && session.messages.some((m) => m.checklistBlock)) return true;
2741
2742
  return false;
2742
2743
  })();
2743
2744
  if (enablePoll && shouldIncludePoll) {
@@ -2915,7 +2916,7 @@ AI (\uD655\uC815):
2915
2916
  ref_step\uC740 1\uBD80\uD130 \uC2DC\uC791\uD558\uB294 \uB2E8\uACC4 \uBC88\uD638, ref_image="last"\uB294 \uAC00\uC7A5 \uCD5C\uADFC \uC774\uBBF8\uC9C0
2916
2917
  - \uBAA8\uB4E0 \uC18D\uC131\uC740 \uC120\uD0DD\uC0AC\uD56D\uC774\uBA70, \uD544\uC694\uD55C \uACBD\uC6B0\uC5D0\uB9CC \uC0AC\uC6A9\uD558\uC138\uC694`);
2917
2918
  } else {
2918
- parts.push(`## \uCCB4\uD06C\uB9AC\uC2A4\uD2B8: \uBCF5\uD569 \uC791\uC5C5 \uC2DC <checklist><step>\uC81C\uBAA9</step></checklist>\uB85C \uCD08\uC548 \uC81C\uC2DC \u2192 \uC720\uC800 \uD655\uC778/\uC218\uC815 \u2192 \uD655\uC815 <checklist> \uB2E4\uC2DC \uCD9C\uB825. \uB2E8\uC21C\uC778\uC0AC\xB7\uB2E8\uC77C\uC0AC\uC2E4\xB7\uB2E8\uC77C\uC791\uC5C5\uC740 \uBC14\uB85C \uB2F5\uBCC0`);
2919
+ parts.push(`## \uCCB4\uD06C\uB9AC\uC2A4\uD2B8: \uBCF5\uD569 \uC791\uC5C5 \uC2DC <checklist><step>\uC81C\uBAA9</step></checklist>\uB85C \uCD08\uC548 \uC81C\uC2DC \u2192 \uC720\uC800 \uD655\uC778/\uC218\uC815 \u2192 \uD655\uC815 <checklist> \uB2E4\uC2DC \uCD9C\uB825. \uB2E8\uC21C\uC778\uC0AC\xB7\uB2E8\uC77C\uC0AC\uC2E4\xB7\uB2E8\uC77C\uC791\uC5C5\uC740 \uBC14\uB85C \uB2F5\uBCC0. **\uD544\uC218: \uC720\uC800\uAC00 \uC2B9\uC778("\uC751", "\uC9C4\uD589\uD574", "\uC88B\uC544" \uB4F1)\uD558\uBA74 \uD14D\uC2A4\uD2B8 \uC124\uBA85 \uC5C6\uC774 \uC989\uC2DC <checklist> \uD0DC\uADF8\uB97C \uB2E4\uC2DC \uCD9C\uB825\uD558\uC138\uC694.**`);
2919
2920
  }
2920
2921
  }
2921
2922
  }
@@ -11419,7 +11420,7 @@ var MessageList = ({
11419
11420
  MessageBubble,
11420
11421
  {
11421
11422
  message,
11422
- isLoading: isLoading && index === messages.length - 1 && message.role === "assistant",
11423
+ isLoading: isLoading && index === messages.length - 1 && message.role === "assistant" && !(activeSkillExecution && activeSkillExecution.status === "executing"),
11423
11424
  isCopied: copiedId === message.id,
11424
11425
  isEditing: editingId === message.id,
11425
11426
  onCopy: () => onCopy(message.content, message.id),
@@ -11454,61 +11455,6 @@ var MessageList = ({
11454
11455
  );
11455
11456
  return renderMessage ? /* @__PURE__ */ jsx17(React13.Fragment, { children: renderMessage(message, bubbleElement) }, message.id) : bubbleElement;
11456
11457
  }),
11457
- activeSkillExecution && activeSkillExecution.status === "executing" && /* @__PURE__ */ jsxs16(
11458
- "div",
11459
- {
11460
- style: {
11461
- display: "flex",
11462
- alignItems: "center",
11463
- gap: "10px",
11464
- padding: "12px 20px",
11465
- margin: "8px auto",
11466
- maxWidth: "680px",
11467
- width: "100%"
11468
- },
11469
- children: [
11470
- /* @__PURE__ */ jsx17(
11471
- "div",
11472
- {
11473
- style: {
11474
- width: "20px",
11475
- height: "20px",
11476
- borderRadius: "50%",
11477
- border: "2px solid var(--chatllm-primary, #3584FA)",
11478
- borderTopColor: "transparent",
11479
- animation: "chatllm-spin 0.8s linear infinite",
11480
- flexShrink: 0
11481
- }
11482
- }
11483
- ),
11484
- /* @__PURE__ */ jsx17(
11485
- "span",
11486
- {
11487
- style: {
11488
- fontSize: "13px",
11489
- fontWeight: 500,
11490
- color: "var(--chatllm-text-muted, #94a3b8)"
11491
- },
11492
- children: activeSkillExecution.progress?.phaseLabel || `${activeSkillExecution.skillName} \uC2E4\uD589 \uC911...`
11493
- }
11494
- ),
11495
- activeSkillExecution.progress?.percentage != null && /* @__PURE__ */ jsxs16(
11496
- "span",
11497
- {
11498
- style: {
11499
- fontSize: "12px",
11500
- color: "var(--chatllm-primary, #3584FA)",
11501
- fontWeight: 600
11502
- },
11503
- children: [
11504
- activeSkillExecution.progress.percentage,
11505
- "%"
11506
- ]
11507
- }
11508
- )
11509
- ]
11510
- }
11511
- ),
11512
11458
  /* @__PURE__ */ jsx17("div", { ref: messagesEndRef })
11513
11459
  ]
11514
11460
  }