rename these "agent tools"

This commit is contained in:
perf3ct 2025-04-07 22:34:24 +00:00
parent 7725b924e9
commit b8a6da6d52
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232
7 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ import { ContextExtractor } from './context/index.js';
import contextService from './context_service.js';
import indexService from './index_service.js';
import { getEmbeddingProvider, getEnabledEmbeddingProviders } from './providers/providers.js';
import agentTools from './agent_tools/index.js';
import agentTools from './context_extractors/index.js';
// Import interfaces
import type {
@ -392,7 +392,7 @@ export class AIServiceManager implements IAIServiceManager {
// Initialize agent tools with this service manager instance
await agentTools.initialize(this);
// Initialize LLM tools - this is the single place where tools are initialized
const toolInitializer = await import('./tools/tool_initializer.js');
await toolInitializer.default.initializeTools();

View File

@ -1,8 +1,8 @@
import type { ChatResponse } from '../ai_interface.js';
import type { VectorSearchResult } from '../agent_tools/vector_search_tool.js';
import type { NoteInfo, NotePathInfo, NoteHierarchyLevel } from '../agent_tools/note_navigator_tool.js';
import type { DecomposedQuery, SubQuery } from '../agent_tools/query_decomposition_tool.js';
import type { ThinkingProcess, ThinkingStep } from '../agent_tools/contextual_thinking_tool.js';
import type { VectorSearchResult } from '../context_extractors/vector_search_tool.js';
import type { NoteInfo, NotePathInfo, NoteHierarchyLevel } from '../context_extractors/note_navigator_tool.js';
import type { DecomposedQuery, SubQuery } from '../context_extractors/query_decomposition_tool.js';
import type { ThinkingProcess, ThinkingStep } from '../context_extractors/contextual_thinking_tool.js';
import type BAttribute from '../../../becca/entities/battribute.js';
/**