aiexecode 1.0.64 → 1.0.65
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.
Potentially problematic release.
This version of aiexecode might be problematic. Click here for more details.
- package/package.json +1 -1
- package/payload_viewer/out/404/index.html +1 -1
- package/payload_viewer/out/404.html +1 -1
- package/payload_viewer/out/index.html +1 -1
- package/payload_viewer/out/index.txt +1 -1
- package/prompts/orchestrator.txt +65 -44
- package/src/ai_based/orchestrator.js +1 -6
- package/src/system/session_memory.js +3 -2
- package/src/ui/App.js +11 -21
- package/src/ui/README.md +8 -15
- package/src/ui/components/BlankLine.js +1 -1
- package/src/ui/components/HistoryItemDisplay.js +14 -0
- package/prompts/orchestrator.backup.txt +0 -896
- package/src/ui/components/HistoryDisplay.js +0 -121
- package/src/ui/components/MainContent.js +0 -69
- package/src/ui/layouts/DefaultAppLayout.js +0 -33
- /package/payload_viewer/out/_next/static/{7YPHpyHm0p72Vs6vJuSiK → pvY11afExc4r1kApy4_Gi}/_buildManifest.js +0 -0
- /package/payload_viewer/out/_next/static/{7YPHpyHm0p72Vs6vJuSiK → pvY11afExc4r1kApy4_Gi}/_clientMiddlewareManifest.json +0 -0
- /package/payload_viewer/out/_next/static/{7YPHpyHm0p72Vs6vJuSiK → pvY11afExc4r1kApy4_Gi}/_ssgManifest.js +0 -0
|
@@ -80,6 +80,7 @@ function logOldStringEvidence(evidence) {
|
|
|
80
80
|
const TYPE_CONFIG = {
|
|
81
81
|
user: { icon: '> ', color: theme.text.accent, bold: true },
|
|
82
82
|
assistant: { icon: '< ', color: theme.status.warning, bold: true },
|
|
83
|
+
assistant_progress: { icon: ' ', color: theme.text.secondary, bold: false }, // 중간 안내 메시지
|
|
83
84
|
system: { icon: '* ', color: theme.text.secondary, bold: false },
|
|
84
85
|
error: { icon: '✗ ', color: theme.status.error, bold: true },
|
|
85
86
|
tool: { icon: '⚙ ', color: theme.status.success, bold: false },
|
|
@@ -524,6 +525,19 @@ function StandardDisplay({ item, isPending, hasFollowingResult, nextItem, isLast
|
|
|
524
525
|
);
|
|
525
526
|
}
|
|
526
527
|
|
|
528
|
+
// 중간 안내 메시지 (assistant_progress) - dimColor로 표시
|
|
529
|
+
if (type === 'assistant_progress') {
|
|
530
|
+
return React.createElement(Box, { flexDirection: "row", marginBottom, marginTop, marginLeft: 2 },
|
|
531
|
+
React.createElement(Text, {
|
|
532
|
+
color: theme.text.secondary,
|
|
533
|
+
dimColor: true
|
|
534
|
+
}, ' ⋯ '),
|
|
535
|
+
React.createElement(Box, { flexDirection: "column", flexGrow: 1 },
|
|
536
|
+
React.createElement(Text, { color: theme.text.secondary, dimColor: true }, text)
|
|
537
|
+
)
|
|
538
|
+
);
|
|
539
|
+
}
|
|
540
|
+
|
|
527
541
|
// 시스템 메시지는 마크다운 렌더링 적용
|
|
528
542
|
if (type === 'system') {
|
|
529
543
|
return React.createElement(Box, { flexDirection: "row", marginBottom, marginTop, marginLeft: 2 },
|