summaryrefslogtreecommitdiff
path: root/packages/cli/src/tools/ToolResult.ts
diff options
context:
space:
mode:
authorJaana Dogan <[email protected]>2025-04-17 12:03:02 -0700
committerN. Taylor Mullen <[email protected]>2025-04-17 14:15:20 -0700
commit81ba61df7f967f141cd8abc57d58a3612dfd4c2b (patch)
treee4cf1a244c0b79fb7167105672c037954144783c /packages/cli/src/tools/ToolResult.ts
parent898a83031c695f6da8705848ebe9998a7b626019 (diff)
Improve readability issues
This is only the first change of many changes. * Remove redundant autogenerated comments * Use the recommended file name style * Use camelCase for variable names * Don't introduce submodules for relevant types * Don't introduce constants like modules, these are implementation details * Remove empty files
Diffstat (limited to 'packages/cli/src/tools/ToolResult.ts')
-rw-r--r--packages/cli/src/tools/ToolResult.ts22
1 files changed, 0 insertions, 22 deletions
diff --git a/packages/cli/src/tools/ToolResult.ts b/packages/cli/src/tools/ToolResult.ts
deleted file mode 100644
index 674e2fcb..00000000
--- a/packages/cli/src/tools/ToolResult.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-/**
- * Standard tool result interface that all tools should implement
- */
-export interface ToolResult {
- /**
- * Content meant to be included in LLM history.
- * This should represent the factual outcome of the tool execution.
- */
- llmContent: string;
-
- /**
- * Markdown string for user display.
- * This provides a user-friendly summary or visualization of the result.
- */
- returnDisplay: ToolResultDisplay;
-}
-
-export type ToolResultDisplay = string | FileDiff;
-
-export interface FileDiff {
- fileDiff: string
-}