mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-12 12:54:07 -07:00
refactor(core): update production type imports from coreToolScheduler (#23498)
This commit is contained in:
@@ -14,7 +14,7 @@ import {
|
|||||||
type ConversationOffered,
|
type ConversationOffered,
|
||||||
type StreamingLatency,
|
type StreamingLatency,
|
||||||
} from './types.js';
|
} from './types.js';
|
||||||
import type { CompletedToolCall } from '../core/coreToolScheduler.js';
|
import type { CompletedToolCall } from '../scheduler/types.js';
|
||||||
import type { Config } from '../config/config.js';
|
import type { Config } from '../config/config.js';
|
||||||
import { debugLogger } from '../utils/debugLogger.js';
|
import { debugLogger } from '../utils/debugLogger.js';
|
||||||
import { getCodeAssistServer } from './codeAssist.js';
|
import { getCodeAssistServer } from './codeAssist.js';
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ import {
|
|||||||
} from '../config/models.js';
|
} from '../config/models.js';
|
||||||
import { hasCycleInSchema } from '../tools/tools.js';
|
import { hasCycleInSchema } from '../tools/tools.js';
|
||||||
import type { StructuredError } from './turn.js';
|
import type { StructuredError } from './turn.js';
|
||||||
import type { CompletedToolCall } from './coreToolScheduler.js';
|
import type { CompletedToolCall } from '../scheduler/types.js';
|
||||||
import {
|
import {
|
||||||
logContentRetry,
|
logContentRetry,
|
||||||
logContentRetryFailure,
|
logContentRetryFailure,
|
||||||
|
|||||||
@@ -43,7 +43,6 @@ export * from './core/prompts.js';
|
|||||||
export * from './core/tokenLimits.js';
|
export * from './core/tokenLimits.js';
|
||||||
export * from './core/turn.js';
|
export * from './core/turn.js';
|
||||||
export * from './core/geminiRequest.js';
|
export * from './core/geminiRequest.js';
|
||||||
export * from './core/coreToolScheduler.js';
|
|
||||||
export * from './scheduler/scheduler.js';
|
export * from './scheduler/scheduler.js';
|
||||||
export * from './scheduler/types.js';
|
export * from './scheduler/types.js';
|
||||||
export * from './scheduler/tool-executor.js';
|
export * from './scheduler/tool-executor.js';
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { type Status } from '../core/coreToolScheduler.js';
|
import { type Status } from '../scheduler/types.js';
|
||||||
import { type ThoughtSummary } from '../utils/thoughtUtils.js';
|
import { type ThoughtSummary } from '../utils/thoughtUtils.js';
|
||||||
import { getProjectHash } from '../utils/paths.js';
|
import { getProjectHash } from '../utils/paths.js';
|
||||||
import { sanitizeFilenamePart } from '../utils/fileUtils.js';
|
import { sanitizeFilenamePart } from '../utils/fileUtils.js';
|
||||||
|
|||||||
@@ -12,11 +12,11 @@ import { describe, it, expect } from 'vitest';
|
|||||||
import { logToolCall } from './loggers.js';
|
import { logToolCall } from './loggers.js';
|
||||||
import { ToolCallEvent } from './types.js';
|
import { ToolCallEvent } from './types.js';
|
||||||
import type { Config } from '../config/config.js';
|
import type { Config } from '../config/config.js';
|
||||||
import type { CompletedToolCall } from '../core/coreToolScheduler.js';
|
|
||||||
import {
|
import {
|
||||||
CoreToolCallStatus,
|
CoreToolCallStatus,
|
||||||
type ToolCallRequestInfo,
|
type ToolCallRequestInfo,
|
||||||
type ToolCallResponseInfo,
|
type ToolCallResponseInfo,
|
||||||
|
type CompletedToolCall,
|
||||||
} from '../scheduler/types.js';
|
} from '../scheduler/types.js';
|
||||||
import { MockTool } from '../test-utils/mock-tool.js';
|
import { MockTool } from '../test-utils/mock-tool.js';
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import type {
|
|||||||
import type { Config } from '../config/config.js';
|
import type { Config } from '../config/config.js';
|
||||||
import type { ApprovalMode } from '../policy/types.js';
|
import type { ApprovalMode } from '../policy/types.js';
|
||||||
|
|
||||||
import type { CompletedToolCall } from '../core/coreToolScheduler.js';
|
import type { CompletedToolCall } from '../scheduler/types.js';
|
||||||
import { CoreToolCallStatus } from '../scheduler/types.js';
|
import { CoreToolCallStatus } from '../scheduler/types.js';
|
||||||
import { DiscoveredMCPTool } from '../tools/mcp-tool.js';
|
import { DiscoveredMCPTool } from '../tools/mcp-tool.js';
|
||||||
import { AuthType } from '../core/contentGenerator.js';
|
import { AuthType } from '../core/contentGenerator.js';
|
||||||
|
|||||||
Reference in New Issue
Block a user