better-chatbot / src /lib /cache /cache-keys.ts
Bot
Initial commit for HF Spaces
05c5ed5
Raw
History Blame Contribute Delete
291 Bytes
export const CacheKeys = {
thread: (threadId: string) => `thread-${threadId}`,
user: (userId: string) => `user-${userId}`,
mcpServerCustomizations: (userId: string) =>
`mcp-server-customizations-${userId}`,
agentInstructions: (agent: string) => `agent-instructions-${agent}`,
};