2025-09-08 14:50:06 +00:00
|
|
|
export enum Path {
|
2025-10-15 19:13:14 +00:00
|
|
|
Root = "/",
|
2025-11-10 08:03:27 +00:00
|
|
|
VaultkeeperAIDir = "Vaultkeeper AI",
|
|
|
|
|
Conversations = `${Path.VaultkeeperAIDir}/Conversations`,
|
2026-02-15 22:46:25 +00:00
|
|
|
Attachments = `${Path.Conversations}/Attachments`,
|
2026-07-10 20:23:44 +00:00
|
|
|
Artifacts = `${Path.Conversations}/Artifacts`,
|
2025-11-10 08:03:27 +00:00
|
|
|
UserInstructions = `${Path.VaultkeeperAIDir}/User Instructions`,
|
2026-04-04 19:04:41 +00:00
|
|
|
ExampleUserInstructions = `${Path.UserInstructions}/EXAMPLE_INSTRUCTIONS.md`,
|
2026-04-06 10:28:45 +00:00
|
|
|
Memories = `${Path.VaultkeeperAIDir}/Memories.md`
|
2025-09-08 14:50:06 +00:00
|
|
|
};
|