(chatId: string)
| 23 | export const chatMessagesKey = (chatId: string) => |
| 24 | ["chats", chatId, "messages"] as const; |
| 25 | export const chatPromptsKey = (chatId: string) => |
| 26 | ["chats", chatId, "prompts"] as const; |
| 27 | |
| 28 | export const chatACLKey = (chatId: string) => ["chats", chatId, "acl"] as const; |
| 29 |
no outgoing calls
no test coverage detected