orquesta-cli 0.2.65 → 0.2.66
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.
|
@@ -1190,11 +1190,11 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
|
|
|
1190
1190
|
}
|
|
1191
1191
|
case 'user_input':
|
|
1192
1192
|
return (React.createElement(Box, { key: entry.id, marginTop: 1 },
|
|
1193
|
-
React.createElement(Text, { color: "green", bold: true }, "\
|
|
1193
|
+
React.createElement(Text, { color: "green", bold: true }, "\u266A "),
|
|
1194
1194
|
React.createElement(Text, null, entry.content)));
|
|
1195
1195
|
case 'assistant_message':
|
|
1196
1196
|
return (React.createElement(Box, { key: entry.id, marginTop: 1, marginBottom: 1, flexDirection: "column" },
|
|
1197
|
-
React.createElement(Text, { color: "magenta", bold: true }, "\
|
|
1197
|
+
React.createElement(Text, { color: "magenta", bold: true }, "\uD83C\uDFB5 Orquesta"),
|
|
1198
1198
|
React.createElement(Box, { paddingLeft: 2 },
|
|
1199
1199
|
React.createElement(MarkdownRenderer, { content: entry.content }))));
|
|
1200
1200
|
case 'interrupt':
|
|
@@ -1370,23 +1370,23 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
|
|
|
1370
1370
|
}
|
|
1371
1371
|
case 'tell_user':
|
|
1372
1372
|
return (React.createElement(Box, { key: entry.id, flexDirection: "column", marginTop: 1, marginBottom: 1 },
|
|
1373
|
-
React.createElement(Text, { color: "green", bold: true }, "\
|
|
1373
|
+
React.createElement(Text, { color: "green", bold: true }, "\uD83C\uDFB6 Response"),
|
|
1374
1374
|
React.createElement(Box, { paddingLeft: 2 },
|
|
1375
1375
|
React.createElement(MarkdownRenderer, { content: entry.content }))));
|
|
1376
1376
|
case 'plan_created':
|
|
1377
1377
|
return (React.createElement(Box, { key: entry.id, flexDirection: "column", marginTop: 1 },
|
|
1378
1378
|
React.createElement(Text, { color: "magenta", bold: true },
|
|
1379
|
-
"\
|
|
1379
|
+
"\uD83C\uDFBC ",
|
|
1380
1380
|
entry.content),
|
|
1381
1381
|
entry.items?.map((item, idx) => (React.createElement(Box, { key: idx, marginLeft: 2 },
|
|
1382
|
-
React.createElement(Text, { color: "gray" }, "\
|
|
1382
|
+
React.createElement(Text, { color: "gray" }, "\u266B "),
|
|
1383
1383
|
React.createElement(Text, null,
|
|
1384
1384
|
idx + 1,
|
|
1385
1385
|
". ",
|
|
1386
1386
|
item))))));
|
|
1387
1387
|
case 'todo_start':
|
|
1388
1388
|
return (React.createElement(Box, { key: entry.id, marginTop: 1 },
|
|
1389
|
-
React.createElement(Text, { color: "blue", bold: true }, "\
|
|
1389
|
+
React.createElement(Text, { color: "blue", bold: true }, "\uD83C\uDFB5 \u25B6 "),
|
|
1390
1390
|
React.createElement(Text, { bold: true }, entry.content)));
|
|
1391
1391
|
case 'todo_complete':
|
|
1392
1392
|
return (React.createElement(Box, { key: entry.id, marginLeft: 2 },
|