andy-stack_vaultkeeper-ai/Enums/Path.ts
Andrew Beal c0178dc364 feat: add multi-term search and user instruction UI with file path setting
Refactor SearchVaultFiles to accept array of search terms, add user instruction panel in chat input with toggle button, move user instruction path to settings (from hardcoded), improve search result interaction with mouse/keyboard support, fix async exists() method in VaultService, and create example instructions file on first launch
2025-11-02 20:16:06 +00:00

7 lines
No EOL
266 B
TypeScript

export enum Path {
Root = "/",
AIAgentDir = "AI Agent",
Conversations = `${Path.AIAgentDir}/Conversations`,
UserInstructions = `${Path.AIAgentDir}/User Instructions`,
ExampleUserInstructions = `${Path.UserInstructions}/EXAMPLE_INSTRUCTIONS.md`
};