2025-04-18 17:44:24 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
2025-04-15 21:41:08 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
import { Box, Text } from 'ink';
|
|
|
|
|
import Spinner from 'ink-spinner';
|
2025-04-21 10:53:11 -04:00
|
|
|
import { IndividualToolCallDisplay, ToolCallStatus } from '../../types.js';
|
|
|
|
|
import { DiffRenderer } from './DiffRenderer.js';
|
|
|
|
|
import { FileDiff, ToolResultDisplay } from '../../../tools/tools.js';
|
|
|
|
|
import { Colors } from '../../colors.js';
|
2025-04-15 21:41:08 -07:00
|
|
|
|
2025-04-19 19:45:42 +01:00
|
|
|
export const ToolMessage: React.FC<IndividualToolCallDisplay> = ({
|
|
|
|
|
callId,
|
2025-04-17 18:06:21 -04:00
|
|
|
name,
|
|
|
|
|
description,
|
|
|
|
|
resultDisplay,
|
|
|
|
|
status,
|
|
|
|
|
}) => {
|
2025-04-19 19:45:42 +01:00
|
|
|
const typedResultDisplay = resultDisplay as ToolResultDisplay | undefined;
|
|
|
|
|
|
2025-04-19 12:38:09 -04:00
|
|
|
let color = Colors.SubtleComment;
|
2025-04-19 19:45:42 +01:00
|
|
|
let prefix = '';
|
|
|
|
|
switch (status) {
|
|
|
|
|
case ToolCallStatus.Pending:
|
|
|
|
|
prefix = 'Pending:';
|
|
|
|
|
break;
|
|
|
|
|
case ToolCallStatus.Invoked:
|
|
|
|
|
prefix = 'Executing:';
|
|
|
|
|
break;
|
|
|
|
|
case ToolCallStatus.Confirming:
|
2025-04-19 12:38:09 -04:00
|
|
|
color = Colors.AccentYellow;
|
2025-04-19 19:45:42 +01:00
|
|
|
prefix = 'Confirm:';
|
|
|
|
|
break;
|
|
|
|
|
case ToolCallStatus.Success:
|
2025-04-19 12:38:09 -04:00
|
|
|
color = Colors.AccentGreen;
|
2025-04-19 19:45:42 +01:00
|
|
|
prefix = 'Success:';
|
|
|
|
|
break;
|
|
|
|
|
case ToolCallStatus.Error:
|
2025-04-19 12:38:09 -04:00
|
|
|
color = Colors.AccentRed;
|
2025-04-19 19:45:42 +01:00
|
|
|
prefix = 'Error:';
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
// Handle unexpected status if necessary, or just break
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const title = `${prefix} ${name}`;
|
2025-04-15 21:41:08 -07:00
|
|
|
|
2025-04-17 18:06:21 -04:00
|
|
|
return (
|
2025-04-19 12:38:09 -04:00
|
|
|
<Box key={callId} flexDirection="column" paddingX={1}>
|
2025-04-19 19:45:42 +01:00
|
|
|
<Box>
|
|
|
|
|
{status === ToolCallStatus.Invoked && (
|
|
|
|
|
<Box marginRight={1}>
|
2025-04-19 12:38:09 -04:00
|
|
|
<Text color={Colors.AccentBlue}>
|
2025-04-19 19:45:42 +01:00
|
|
|
<Spinner type="dots" />
|
2025-04-17 18:06:21 -04:00
|
|
|
</Text>
|
2025-04-19 19:45:42 +01:00
|
|
|
</Box>
|
|
|
|
|
)}
|
|
|
|
|
<Text bold color={color}>
|
|
|
|
|
{title}
|
|
|
|
|
</Text>
|
|
|
|
|
<Text color={color}>
|
|
|
|
|
{status === ToolCallStatus.Error && typedResultDisplay
|
|
|
|
|
? `: ${typedResultDisplay}`
|
|
|
|
|
: ` - ${description}`}
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
|
|
|
|
{status === ToolCallStatus.Success && typedResultDisplay && (
|
|
|
|
|
<Box flexDirection="column" marginLeft={2}>
|
|
|
|
|
{typeof typedResultDisplay === 'string' ? (
|
|
|
|
|
<Text>{typedResultDisplay}</Text>
|
|
|
|
|
) : (
|
|
|
|
|
<DiffRenderer
|
|
|
|
|
diffContent={(typedResultDisplay as FileDiff).fileDiff}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
2025-04-15 21:41:08 -07:00
|
|
|
</Box>
|
2025-04-17 18:06:21 -04:00
|
|
|
)}
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
2025-04-15 21:41:08 -07:00
|
|
|
};
|