orquesta-cli 0.2.58 → 0.2.59
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.
|
@@ -215,6 +215,7 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
|
|
|
215
215
|
setToolExecutionCallback((toolName, reason, args) => {
|
|
216
216
|
lastToolArgsRef.current = args;
|
|
217
217
|
setCurrentToolName(toolName);
|
|
218
|
+
setActivityDetail(reason || '');
|
|
218
219
|
addLog({
|
|
219
220
|
type: 'tool_start',
|
|
220
221
|
content: toolName,
|
|
@@ -1440,7 +1441,7 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
|
|
|
1440
1441
|
pendingToolApproval && (React.createElement(Box, { marginY: 1 },
|
|
1441
1442
|
React.createElement(ApprovalDialog, { toolName: pendingToolApproval.toolName, args: pendingToolApproval.args, reason: pendingToolApproval.reason, onResponse: handleApprovalResponse }))),
|
|
1442
1443
|
isProcessing && !pendingToolApproval && !isDocsSearching && (React.createElement(Box, { marginY: 1, flexDirection: "column" },
|
|
1443
|
-
React.createElement(ActivityIndicator, { activity: getCurrentActivityType(), startTime: activityStartTime, detail: activityDetail, subActivities: subActivities, modelName: currentModelInfo.model }),
|
|
1444
|
+
React.createElement(ActivityIndicator, { activity: getCurrentActivityType(), startTime: activityStartTime, detail: activityDetail || currentToolName || '', subActivities: subActivities, modelName: currentModelInfo.model }),
|
|
1444
1445
|
streamingText && (React.createElement(StreamingOutput, { text: streamingText })))),
|
|
1445
1446
|
isDocsSearching && (React.createElement(DocsSearchProgress, { logs: docsSearchLogs, isSearching: isDocsSearching })),
|
|
1446
1447
|
planExecutionState.todos.length > 0 && (React.createElement(Box, { marginTop: 2, marginBottom: 1 },
|