refactor(core): delete obsolete coreToolScheduler (#23502)

This commit is contained in:
Abhi
2026-03-23 17:21:14 -04:00
committed by GitHub
parent db14cdf92b
commit 919e5da581
7 changed files with 30 additions and 3987 deletions

View File

@@ -24,14 +24,16 @@ import {
} from '@google/genai';
import * as codeAssist from './codeAssist.js';
import type { CodeAssistServer } from './server.js';
import type { CompletedToolCall } from '../core/coreToolScheduler.js';
import type {
CompletedToolCall,
ToolCallResponseInfo,
} from '../scheduler/types.js';
import {
ToolConfirmationOutcome,
type AnyDeclarativeTool,
type AnyToolInvocation,
} from '../tools/tools.js';
import type { Config } from '../config/config.js';
import type { ToolCallResponseInfo } from '../scheduler/types.js';
function createMockResponse(
candidates: GenerateContentResponse['candidates'] = [],