(chatId: string)
| 21 | export const chatsKey = ["chats"] as const; |
| 22 | export const chatKey = (chatId: string) => ["chats", chatId] as const; |
| 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 |
no outgoing calls