Skip to content

Commit 6b7e0f7

Browse files
committed
Fix imports
1 parent ba00a8f commit 6b7e0f7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

agents-graveyard/file-explorer/file-explorer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { AgentTemplateTypes } from '@codebuff/common/types/session-state'
22

3-
import { publisher } from '../constants'
3+
import { publisher } from '../../agents/constants'
44

5-
import type { SecretAgentDefinition } from '../types/secret-agent-definition'
5+
import type { SecretAgentDefinition } from '../../agents/types/secret-agent-definition'
66

77
const paramsSchema = {
88
type: 'object' as const,

agents-graveyard/file-explorer/find-all-referencer.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { ToolCall } from '../types/agent-definition'
2-
import { publisher } from '../constants'
1+
import { ToolCall } from '../../agents/types/agent-definition'
2+
import { publisher } from '../../agents/constants'
33

44
import {
55
PLACEHOLDER,
66
type SecretAgentDefinition,
7-
} from '../types/secret-agent-definition'
7+
} from '../../agents/types/secret-agent-definition'
88

99
const definition: SecretAgentDefinition = {
1010
id: 'find-all-referencer',

agents-graveyard/researcher/researcher.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { publisher } from '../constants'
2-
import type { SecretAgentDefinition } from '../types/secret-agent-definition'
1+
import { publisher } from '../../agents/constants'
2+
import type { SecretAgentDefinition } from '../../agents/types/secret-agent-definition'
33

44
const definition: SecretAgentDefinition = {
55
id: 'researcher',

evals/buffbench/eval-task-generator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CodebuffClient, type AgentDefinition } from '@codebuff/sdk'
2-
import fileExplorerDef from '../../agents/file-explorer/file-explorer'
3-
import findAllReferencerDef from '../../agents/file-explorer/find-all-referencer'
2+
import fileExplorerDef from '../../agents-graveyard/file-explorer/file-explorer'
3+
import findAllReferencerDef from '../../agents-graveyard/file-explorer/find-all-referencer'
44
import { PLACEHOLDER } from '../../agents/types/secret-agent-definition'
55

66
const evalTaskGeneratorAgentDef: AgentDefinition = {

packages/agent-runtime/src/__tests__/read-docs-tool.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
} from 'bun:test'
1515

1616
import { createToolCallChunk, mockFileContext } from './test-utils'
17-
import researcherAgent from '../../../../agents/researcher/researcher'
17+
import researcherAgent from '../../../../agents-graveyard/researcher/researcher'
1818
import * as webApi from '../llm-api/codebuff-web-api'
1919
import { runAgentStep } from '../run-agent-step'
2020
import { assembleLocalAgentTemplates } from '../templates/agent-registry'

packages/agent-runtime/src/__tests__/web-search-tool.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
} from 'bun:test'
1616

1717
import { createToolCallChunk, mockFileContext } from './test-utils'
18-
import researcherAgent from '../../../../agents/researcher/researcher'
18+
import researcherAgent from '../../../../agents-graveyard/researcher/researcher'
1919
import * as webApi from '../llm-api/codebuff-web-api'
2020
import { runAgentStep } from '../run-agent-step'
2121
import { assembleLocalAgentTemplates } from '../templates/agent-registry'

0 commit comments

Comments
 (0)