We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f01d4d5 commit eb867e4Copy full SHA for eb867e4
1 file changed
src/app/hooks/use-chat.ts
@@ -27,7 +27,7 @@ export function useChat(botId: BotId) {
27
28
const sendMessage = useCallback(
29
async (input: string, image?: File) => {
30
- trackEvent('send_message', { botId, withImage: !!image })
+ trackEvent('send_message', { botId, withImage: !!image, name: chatState.bot.name })
31
32
const botMessageId = uuid()
33
setChatState((draft) => {
0 commit comments