mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-10 01:39:25 +00:00
fix: import paths
This commit is contained in:
parent
c058fd3d93
commit
eab2d579c1
4 changed files with 5 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { createDecorator } from "#/_base/di";
|
||||
import type { ExperimentalFlagResolver } from '../../../flags';
|
||||
import type { ExperimentalFlagResolver } from '#/flags';
|
||||
|
||||
import type { ContextMessage } from '../types';
|
||||
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue