tool calling is close to working

getting closer to calling tools...

we definitely need this

closer to tool execution...

agentic tool calling is...kind of working?
This commit is contained in:
perf3ct
2025-04-06 20:50:08 +00:00
parent eb353df010
commit 26b1b08129
23 changed files with 1826 additions and 133 deletions

View File

@@ -392,6 +392,11 @@ 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();
log.info("LLM tools initialized successfully");
this.initialized = true;
log.info("AI service initialized successfully");