super-harness / src /lib /cache /cache-keys.ts
Cyber Catalyst Team
Deploy to HF Spaces with LFS
4782147
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}`,
};