mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
Add memories feature allowing AI to retain vault conventions, user preferences, and established workflows across conversation sessions. Include read-only mode option, validation requiring read-before-write, and settings UI with toggle controls. Adjusted default search and snippet size values in plugin settings.
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`
|
|
}; |