fix(core): correct import type usage for RemoteAgentInvocation

This commit is contained in:
mkorwel
2026-02-19 23:26:45 -06:00
committed by Matt Korwel
parent 6b81eb2964
commit 6ce878416c
+12 -10
View File
@@ -4,22 +4,24 @@
* SPDX-License-Identifier: Apache-2.0
*/
import {
BaseToolInvocation,
type ToolConfirmationOutcome,
type ToolResult,
type ToolCallConfirmationDetails,
type ExecuteOptions,
import { BaseToolInvocation } from '../tools/tools.js';
import type {
ToolResult,
ToolCallConfirmationDetails,
ToolConfirmationOutcome,
ExecuteOptions,
} from '../tools/tools.js';
import {
DEFAULT_QUERY_STRING,
type RemoteAgentInputs,
type RemoteAgentDefinition,
type AgentInputs,
type SubagentProgress,
getAgentCardLoadOptions,
getRemoteAgentTargetUrl,
} from './types.js';
import type {
RemoteAgentInputs,
RemoteAgentDefinition,
AgentInputs,
SubagentProgress,
} from './types.js';
import { type AgentLoopContext } from '../config/agent-loop-context.js';
import type { MessageBus } from '../confirmation-bus/message-bus.js';
import type {