mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 16:30:27 +00:00
Implement optional `resolveToolCall` method in IAIClass interface to allow providers to handle specific tools before falling through to AIToolService. Add Mistral web search capability using native agent API, enabling dynamic tool resolution at the provider level.
9 lines
No EOL
400 B
TypeScript
9 lines
No EOL
400 B
TypeScript
export enum Path {
|
|
Root = "/",
|
|
VaultkeeperAIDir = "Vaultkeeper AI",
|
|
Conversations = `${Path.VaultkeeperAIDir}/Conversations`,
|
|
Attachments = `${Path.Conversations}/Attachments`,
|
|
UserInstructions = `${Path.VaultkeeperAIDir}/User Instructions`,
|
|
ExampleUserInstructions = `${Path.UserInstructions}/EXAMPLE_INSTRUCTIONS.md`,
|
|
Memories = `${Path.VaultkeeperAIDir}/Memories.md`
|
|
}; |