fix: resolve build errors in cli and sdk due to tool constructor changes

This commit is contained in:
mkorwel
2026-03-24 07:49:14 -07:00
parent b842d5526a
commit b5a23e656c
7 changed files with 33 additions and 19 deletions
+3 -3
View File
@@ -6,14 +6,14 @@
import * as path from 'node:path';
import { getFolderStructure } from '../utils/getFolderStructure.js';
import type {
ToolConfirmationOutcome,
import {
BaseDeclarativeTool,
BaseToolInvocation,
Kind,
type ToolInvocation,
type ToolResult,
type ToolCallConfirmationDetails
type ToolCallConfirmationDetails,
type ToolConfirmationOutcome,
} from './tools.js';
import type { MessageBus } from '../confirmation-bus/message-bus.js';
import type { AgentLoopContext } from '../config/agent-loop-context.js';