fix: import paths

This commit is contained in:
_Kerman 2026-06-25 17:41:17 +08:00
parent c058fd3d93
commit eab2d579c1
4 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
import { createDecorator } from "#/_base/di";
import type { ExperimentalFlagResolver } from '../../../flags';
import type { ExperimentalFlagResolver } from '#/flags';
import type { ContextMessage } from '../types';

View file

@ -5,12 +5,12 @@ import {
registerSingleton,
SyncDescriptor,
} from "#/_base/di";
import { FlagResolver, type ExperimentalFlagResolver } from '../../../flags';
import { FlagResolver, type ExperimentalFlagResolver } from '#/flags';
import {
estimateTokensForContentParts,
estimateTokensForMessages,
} from "#/_base/utils/tokens";
import type { TelemetryProperties } from '../../../telemetry';
import type { TelemetryProperties } from '#/telemetry';
import { IContextMemory } from '../contextMemory/contextMemory';
import { IContextSizeService } from '../contextSize/contextSize';
import { IProfileService } from '../profile/profile';

View file

@ -1,5 +1,5 @@
import { createDecorator, type IDisposable } from "#/_base/di";
import type { ExecutableTool } from '../../../loop';
import type { ExecutableTool } from '#/loop';
import type { Hooks } from '../hooks';
import type { ToolInfo, ToolSource } from '../types';

View file

@ -5,7 +5,7 @@ import {
toDisposable,
type IDisposable,
} from "#/_base/di";
import type { ExecutableTool } from '../../../loop';
import type { ExecutableTool } from '#/loop';
import { OrderedHookSlot } from '../hooks';
import type { ToolInfo, ToolSource } from '../types';
import { IToolRegistry, type ToolRegistrationOptions } from './toolRegistry';