mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
- Remove unnecessary reasoning parameter from web search function - Update Path enum to separate root and AI agent directory - Add filename matching to vault search results - Use Path enum constants consistently across services
6 lines
No EOL
187 B
TypeScript
6 lines
No EOL
187 B
TypeScript
export enum Path {
|
|
Root = "/",
|
|
AIAgentDir = "AI Agent",
|
|
UserInstruction = `${Path.AIAgentDir}/AGENT_INSTRUCTIONS.md`,
|
|
Conversations = `${Path.AIAgentDir}/Conversations`
|
|
}; |