chatbase-node
chatbase-node copied to clipboard
Quickly integrate your Node.js chatbot with Chatbase Analytics
Are there any plans to support the Custom Events API (https://chatbase.com/documentation/events)? It would be nice to have the support of the full feature set that chatbase offers.
I am trying to implement the chatbase analytics for dialogflow agent using dialogflow google cloud function. When I send the chatbase message independently using the sample nodejs function. It sends...
Bumps [eslint](https://github.com/eslint/eslint) from 3.19.0 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...
I was exploring the chatbase platform recently. I tried testing with every option with message set. But when I tried sending a message with feed back flag set using `setAsFeedback()`,...
I have the following code: ``` var chatbase = require('@google/chatbase') .setApiKey(CHATBASE_KEY) .setPlatform('Actions'); module.exports = { userMessage: function (conv) { let userID = conv._userid; let conversationID = conv.id; let message =...
Hi, The chatebase documentation suggests on Integrate link tracking Is there any support for that
I do not understand the usage of the "feedback" attribute `.setAsFeedback() // sets the message as feedback from the user` Could you share a meaningful use case? I couldn't find...
I have the following code: ```js this.chatbaseMessageGroup = chatbase .newMessageSet() .setApiKey(this.chatbaseApiKey) .setUserId(this.deviceId) .setPlatform(this.platform) .setCustomSessionId(this.sessionId) .setIntent(this.agent.intent); this.chatbaseUserMessage = this.chatbaseMessageGroup .newMessage() .setAsTypeUser() .setMessage(this.agent.query) .setAsHandled() .setMessageId(this.responseId); this.chatbaseChatbotMessage = this.chatbaseMessageGroup .newMessage() .setAsTypeAgent() .setMessageId(this.responseId); console.log('--chatbaseMessageGroup',...
https://chatbase.com/documentation/nodejs-library states the following:  While https://github.com/google/chatbase-node has a different statement:  So, is this an official package or not? If so, please update the README accordingly :)