 # Google Assistant Chatbase analytics snippet I couldn't find full examples of Chatbase integration for the Google Assistant other than the [snippets in the chatbase-node readme](https://github.com/google/chatbase-node/), so here's the snippet recently created for [Beyond Bitshares](https://steemit.com/bitshares/@cm-steem/beyond-bitshares-google-assistant-upgrading-to-latest-action-on-google-alpha-release). Recently, Dialogflow announced further Chatbot integration [enabling session flow within the Dialogflow web UI](https://blog.dialogflow.com/post/session-flow-analytics/), despite these recent improvements there is still additional functionality available within Chatbase worth exploring. A quote from the above blog post: > Weβre continually working with Chatbase, the cloud service for more easily analyzing and optimizing bots, on expanding the Analytics dashboard to help you monitor and improve agent performance. ### Why use Chatbase? > #### Save time on bot analysis > Track key metrics like active users, sessions, and retention across multiple chat platforms. > #### Improve bot accuracy > Automatically identify problems and get suggestions for doing quick optimizations via machine learning. > #### Increase conversion rates > Visualize the flow of conversations to understand how efficiently users interact with your bot. > > [Source](https://chatbase.com/welcome/) ## Pre-Reqs Include the following dependencies in your package.json: ``` "@google/chatbase": "^1.1.0", "actions-on-google": "2.0.0-alpha.2", ``` ## Import the package: in your code: Register on Chatbase, get your key and replace 'API_KEY' with it. ``` var chatbase = require('@google/chatbase') .setApiKey('API_KEY') // Your Chatbase API Key .setPlatform('Google Assistant'); // The type of message you are sending to chatbase: user (user) or agent (bot) ``` ## Create functions for errors and invalid input ``` function catch_error(conv, error_message, intent) { /* Generic function for reporting errors & providing error handling for the user. */ chatbase_analytics( conv, `Error within intent ${intent}`, // input_message intent, // input_intent 'error' // win_or_fail ); if(error_message instanceof Error) { console.error(error_message); } else { console.error(new Error(error_message)); } return conv.close( new SimpleResponse({ // If we somehow fail, do so gracefully! speech: "An unexpected error was encountered! Let's end our Beyond Bitshares session for now.", text: "An unexpected error was encountered! Let's end our Beyond Bitshares session for now." }) ); } function invalid_input(conv, intent_name) { /* Reducing code duplication. Replace conv.close with a direction to a fallback intent in the future! */ chatbase_analytics( conv, `User input invalid data within intent ${intent_name}`, // input_message intent_name, // input_intent 'fail' // win_or_fail ); return conv.close( new SimpleResponse({ // If we somehow fail, do so gracefully! speech: "You provided invalid input data, try again with alternative input!", text: "You provided invalid input data, try again with alternative input!" }) ); } ``` ## Then create the chatbase_analytics function: Similarly in this section, change the 'API_KEY' to your chatbase analytics key. ``` function chatbase_analytics(conv, input_message, input_intent, win_or_fail) { /* Integrating chatbase chat bot analytics. Will help optimize user experience whilst minimizing privacy impact. */ var userId = conv.user.id; if (win_or_fail === 'Win') { // For reporting successful bot interaction chatbase.newMessage('API_KEY') .setPlatform('Google Assistant') .setMessage(input_message) .setVersion('1.0') .setUserId(userId.toString()) .setAsTypeUser() // sets the message as type user .setAsHandled() // set the message as handled -- this means the bot understood the message sent by the user .setIntent(input_intent) // the intent of the sent message (does not have to be set for agent messages) .setTimestamp(Date.now().toString()) // Only unix epochs with Millisecond precision .send() .then(msg => console.log(msg.getCreateResponse())) .catch(err => console.error(err)); } else { // For reporting fallback attempts chatbase.newMessage('API_KEY') .setPlatform('Google Assistant') .setMessage(input_message) .setVersion('1.0') .setUserId(userId.toString()) .setAsTypeUser() // sets the message as type agent .setAsNotHandled() // set the message as not handled -- this means the opposite of the preceding .setIntent(input_intent) // the intent of the sent message (does not have to be set for agent messages) .setTimestamp(Date.now().toString()) // Only unix epochs with Millisecond precision .send() .then(msg => console.log(msg.getCreateResponse())) .catch(err => console.error(err)); } } ``` ## Then finally - call the function at the end of intents ### For successful intent outcome ``` chatbase_analytics( conv, 'About page', // input_message 'About', // input_intent 'Win' // win_or_fail ); ``` ### For invalid user input outcome ``` return invalid_input(conv, `account_balances`); ``` ### For handling errors ``` return catch_error(conv, error_message, 'account_balances'); ``` ### Input message contents? Try to include useful information, like what the user did in the function, including potentially limited input variable information. --- Have any questions about the above? Just write a comment below! Cheers, @cm-steem
author | cm-steem |
---|---|
permlink | google-assistant-chatbase-analytics-guide |
category | |
json_metadata | {"tags":["google","chatbase","bots","programming","bitshares"],"users":["cm-steem"],"image":["https://steemitimages.com/DQmWg9qqunbLxrabNNNASke63fuzi9ZsQYZ4TYTuK28AAkM/image.png"],"links":["https://github.com/google/chatbase-node/","https://steemit.com/bitshares/@cm-steem/beyond-bitshares-google-assistant-upgrading-to-latest-action-on-google-alpha-release","https://blog.dialogflow.com/post/session-flow-analytics/","https://chatbase.com/welcome/"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-03-25 22:32:00 |
last_update | 2018-03-31 13:00:57 |
depth | 0 |
children | 16 |
last_payout | 2018-04-01 22:32:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 45.247 HBD |
curator_payout_value | 10.464 HBD |
pending_payout_value | 0.000 HBD |
promoted | 1.000 HBD |
body_length | 5,792 |
author_reputation | 58,522,774,254,119 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,580,818 |
net_rshares | 21,921,275,999,545 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pheonike | 0 | 1,390,584,967 | 20% | ||
konelectric | 0 | 191,532,835,500 | 100% | ||
scalextrix | 0 | 29,984,817,209 | 100% | ||
cm-steem | 0 | 571,513,512,845 | 100% | ||
honeythief | 0 | 66,602,019,190 | 100% | ||
on0tole | 0 | 154,300,327,414 | 100% | ||
anasya | 0 | 6,146,118,816 | 100% | ||
vortac | 0 | 3,193,853,085,849 | 100% | ||
sveokla | 0 | 18,357,388,007 | 80% | ||
marinabogumil | 0 | 70,484,073,780 | 100% | ||
kell234 | 0 | 122,418,859 | 100% | ||
hyiparena | 0 | 35,139,562,297 | 100% | ||
ubg | 0 | 204,938,046 | 1% | ||
zaebars | 0 | 476,356,148,200 | 100% | ||
smailer | 0 | 366,221,006,488 | 100% | ||
dmilash | 0 | 165,318,663 | 100% | ||
gomeravibz | 0 | 335,036,668,719 | 100% | ||
mama-steem | 0 | 12,015,471,029 | 100% | ||
uuuhha | 0 | 31,582,027,872 | 100% | ||
miikkikiikki | 0 | 855,617,589 | 50% | ||
erikkartmen | 0 | 2,329,780,229 | 80% | ||
neuralminer | 0 | 3,146,860,917 | 100% | ||
sc-steemit | 0 | 138,882,548,363 | 100% | ||
nadin3 | 0 | 16,613,561,806 | 100% | ||
xanoxt | 0 | 166,660,983,671 | 100% | ||
victoriart | 0 | 3,949,378,782 | 100% | ||
tatianka | 0 | 16,787,755,231 | 100% | ||
profitgenerator | 0 | 768,605,584 | 100% | ||
dan-bn | 0 | 702,424,467,963 | 100% | ||
ebargains | 0 | 690,318,300,361 | 66.67% | ||
elena-singer | 0 | 27,913,950,697 | 100% | ||
anton333 | 0 | 17,660,007,403 | 100% | ||
ekaterinka | 0 | 46,690,848,005 | 100% | ||
drac59 | 0 | 2,355,986,399 | 90% | ||
happyhippy87 | 0 | 923,829,274 | 100% | ||
borishaifa | 0 | 27,970,416,593 | 100% | ||
htyfn | 0 | 207,212,086 | 100% | ||
rusteemitblog | 0 | 103,540,771,866 | 100% | ||
therajmahal | 0 | 13,227,574,955 | 100% | ||
steemtruth | 0 | 25,323,733,707 | 15% | ||
marel | 0 | 14,134,056,990 | 100% | ||
steemlift | 0 | 22,398,360,762 | 100% | ||
max-max | 0 | 24,486,311,850 | 100% | ||
minersean | 0 | 505,917,514 | 100% | ||
kiton | 0 | 7,678,937,179 | 100% | ||
o0pepper0o | 0 | 14,280,153,293 | 50% | ||
spacecowboy | 0 | 2,049,469,039 | 100% | ||
kostaslou | 0 | 1,205,151,468 | 100% | ||
blockained | 0 | 1,196,107,811 | 100% | ||
blockchained | 0 | 186,768,865,259 | 100% | ||
marco.world | 0 | 1,196,067,588 | 100% | ||
blckchnd | 0 | 1,193,889,018 | 100% | ||
vikx | 0 | 6,440,908,437 | 100% | ||
mandagoi | 0 | 6,274,378,268 | 20% | ||
jkkim | 0 | 56,799,853 | 10% | ||
michaelwilshaw | 0 | 5,326,075,003 | 10% | ||
xxcynicalkidxx | 0 | 211,876,554 | 50% | ||
zipity | 0 | 930,281,251 | 100% | ||
unrared | 0 | 11,579,947,103 | 20% | ||
trixiedraws | 0 | 4,022,495,210 | 100% | ||
parejan | 0 | 33,551,964,799 | 100% | ||
fernandorivera | 0 | 70,758,212 | 100% | ||
humanabstract | 0 | 12,644,050,445 | 100% | ||
dmilliz | 0 | 1,470,614,754 | 100% | ||
artem.timofeev | 0 | 368,589,911 | 100% | ||
orhun | 0 | 82,822,498 | 15% | ||
teddieelga | 0 | 82,822,498 | 15% | ||
dawnasheelagh | 0 | 82,822,498 | 15% | ||
doryaeriell | 0 | 83,068,200 | 15% | ||
valenesiana | 0 | 83,068,200 | 15% | ||
eolandananni | 0 | 83,068,200 | 15% | ||
agnessejanot | 0 | 83,068,200 | 15% | ||
juninalethia | 0 | 83,068,200 | 15% | ||
elladinenolana | 0 | 82,870,220 | 15% | ||
racdaolato1976 | 0 | 82,822,498 | 15% | ||
lifernesec1973 | 0 | 82,822,498 | 15% | ||
fueprojacan1988 | 0 | 82,822,498 | 15% | ||
funnytime | 0 | 83,068,200 | 15% | ||
artworld | 0 | 82,958,011 | 15% | ||
naturecenter | 0 | 83,068,200 | 15% | ||
traveled | 0 | 83,068,200 | 15% | ||
mariano35 | 0 | 82,822,498 | 15% | ||
montecarlo35 | 0 | 82,822,498 | 15% | ||
franchescasacco | 0 | 82,822,498 | 15% | ||
boklassen | 0 | 82,822,498 | 15% | ||
nejdat | 0 | 82,822,498 | 15% | ||
artdirector | 0 | 83,006,100 | 15% | ||
art-is | 0 | 83,006,100 | 15% | ||
anoopsingh | 0 | 333,910,045 | 100% | ||
everdayfood | 0 | 82,773,944 | 15% | ||
odl | 0 | 380,610,474 | 15% | ||
peaceandlove | 0 | 13,004,066,794,595 | 100% | ||
bilgi | 0 | 82,963,537 | 15% | ||
eksisozluk | 0 | 83,068,200 | 15% | ||
sohbet | 0 | 83,068,200 | 15% | ||
banka | 0 | 83,068,200 | 15% | ||
onedio | 0 | 83,068,200 | 15% | ||
bursa | 0 | 83,068,200 | 15% | ||
osmanli | 0 | 83,068,200 | 15% | ||
hottopic | 0 | 35,793,042,310 | 50% | ||
bitcoinfast | 0 | 83,129,115 | 15% | ||
ohadiyorum | 0 | 83,068,200 | 15% | ||
lyon89 | 0 | 872,363,104 | 100% | ||
whalepunk | 0 | 831,403,110,807 | 100% | ||
ilikechocolate | 0 | 3,881,469,669 | 100% | ||
graceelecte | 0 | 601,303,891 | 100% | ||
fredeibarra | 0 | 601,544,352 | 100% | ||
criticalkush | 0 | 2,546,814,193 | 100% | ||
mariginal | 0 | 82,773,525 | 15% | ||
ankavatar | 0 | 174,495,862 | 15% | ||
zkan | 0 | 69,115,387 | 15% | ||
talhadogan | 0 | 3,784,768,096 | 100% | ||
kaanight | 0 | 79,596,066 | 15% | ||
meeertcakir | 0 | 0 | 100% | ||
mayagag54 | 0 | 275,725,393 | 60% | ||
bestnews | 0 | 275,651,729 | 60% | ||
nicegirls | 0 | 279,468,482 | 60% | ||
porschegts | 0 | 279,312,810 | 60% | ||
luxurycars | 0 | 279,099,808 | 60% | ||
selenagomes | 0 | 278,651,708 | 60% | ||
katy.perry | 0 | 278,772,735 | 60% | ||
clipmovie | 0 | 278,791,617 | 60% | ||
koreanmovies | 0 | 279,262,335 | 60% | ||
aaaaaaaaaaa | 0 | 278,791,617 | 60% | ||
steemit.admin | 0 | 279,281,498 | 60% | ||
steemit.coin | 0 | 279,169,935 | 60% | ||
hearter | 0 | 0 | 100% | ||
steemit-coins | 0 | 279,169,935 | 60% | ||
animalsworld | 0 | 276,343,209 | 60% | ||
steemit-follow | 0 | 279,169,935 | 60% | ||
steemit.art | 0 | 280,175,009 | 60% | ||
itsragged | 0 | 313,325,278 | 100% | ||
a1453a | 0 | 285,479,516 | 60% | ||
moviesandtrailer | 0 | 279,653,261 | 60% | ||
steemit-comic | 0 | 280,286,801 | 60% | ||
interestingman | 0 | 276,595,086 | 60% | ||
steemit-new | 0 | 280,137,741 | 60% | ||
steemit-photo | 0 | 278,904,992 | 60% | ||
steemit-dtube | 0 | 279,550,925 | 60% | ||
steemit-bitcoin | 0 | 280,305,429 | 60% | ||
steemit-kr | 0 | 278,868,387 | 60% | ||
steemit-world | 0 | 279,263,952 | 60% | ||
ottoman | 0 | 1,126,427,649 | 60% | ||
slowmotion | 0 | 280,044,437 | 60% | ||
empereur | 0 | 242,621,686 | 100% | ||
jsj9346 | 0 | 736,843,641 | 100% | ||
cokenrum | 0 | 370,435,209 | 100% | ||
varvara89 | 0 | 0 | 100% | ||
victorivera | 0 | 0 | 100% | ||
byresteem | 0 | 77,863,976,165 | 50% | ||
c4h8n8o8 | 0 | 477,193,915 | 100% | ||
ziaulhaqnsm | 0 | 483,629,316 | 100% | ||
steem15 | 0 | 593,252,679 | 100% | ||
xelda | 0 | 580,676,859 | 100% | ||
avasome | 0 | 279,369,732 | 60% | ||
fantasticgirl | 0 | 279,231,322 | 60% | ||
yarasa | 0 | 279,425,443 | 60% | ||
tomraider | 0 | 279,108,889 | 60% | ||
upmea | 0 | 279,127,482 | 60% | ||
magloria | 0 | 537,538,029 | 100% | ||
bodyguard | 0 | 174,517,343 | 60% | ||
dekteng | 0 | 428,340,691 | 100% | ||
meertcakir | 0 | 0 | 100% | ||
mjzo | 0 | 343,229,691 | 100% | ||
casonova | 0 | 0 | 100% | ||
tefanii | 0 | 0 | 100% | ||
arimaulana | 0 | 616,242,479 | 100% | ||
bandumona | 0 | 0 | 100% | ||
freesoundeffects | 0 | 278,935,107 | 60% | ||
yesiruolaide | 0 | 613,674,178 | 100% | ||
ashokkumarsharma | 0 | 120,113,267 | 100% | ||
urkmez | 0 | 0 | 100% | ||
nazarmobil | 0 | 0 | 100% | ||
rothmans | 0 | 0 | 100% | ||
tamer5461 | 0 | 82,760,562 | 15% | ||
shizuka | 0 | 230,689,842 | 100% | ||
bass-boosted | 0 | 279,816,482 | 60% | ||
ayraaprilia | 0 | 499,148,119 | 100% | ||
highvote | 0 | 0 | 100% | ||
alexverge | 0 | 0 | 100% | ||
jeryalex | 0 | 0 | 100% | ||
smitcaen | 0 | 0 | 100% | ||
supandipunoe | 0 | 356,474,682 | 100% | ||
aatifmele | 0 | 0 | 100% | ||
arrowmed | 0 | 0 | 100% | ||
mateosiit | 0 | 0 | 100% | ||
blockswip | 0 | 0 | 100% | ||
quickman | 0 | 0 | 100% | ||
ronkojic | 0 | 0 | 100% | ||
konte | 0 | 0 | 100% | ||
votemen | 0 | 0 | 100% | ||
holmesx | 0 | 0 | 100% | ||
highcom | 0 | 0 | 100% | ||
votevote | 0 | 0 | 100% | ||
plakout | 0 | 0 | 100% | ||
newacco | 0 | 0 | 100% | ||
mynames | 0 | 0 | 100% | ||
fingerman | 0 | 0 | 100% | ||
saadetarabaci | 0 | 0 | 100% | ||
bicopak | 0 | 0 | 100% | ||
zarifkumaro | 0 | 0 | 100% | ||
kocero232 | 0 | 0 | 100% | ||
ayanlarevc | 0 | 0 | 100% | ||
zamazingo1898 | 0 | 0 | 100% | ||
plipplek | 0 | 0 | 100% | ||
dubailive | 0 | 0 | 100% | ||
mikomike | 0 | 0 | 100% | ||
speedgonzales | 0 | 0 | 100% | ||
fishhead | 0 | 0 | 100% | ||
semad | 0 | 279,007,316 | 60% | ||
simay | 0 | 82,949,161 | 15% | ||
yoon0862 | 0 | 402,454,963 | 100% | ||
supervote | 0 | 55,774,091 | 60% | ||
xwhale | 0 | 55,773,649 | 60% | ||
hashmieali77 | 0 | 61,309,698 | 100% | ||
mavibalina | 0 | 278,835,276 | 60% | ||
aa1 | 0 | 278,835,276 | 60% | ||
trendpost | 0 | 278,833,903 | 60% | ||
steemitwall | 0 | 278,833,903 | 60% | ||
guzelsozler | 0 | 278,835,276 | 60% | ||
dvote | 0 | 278,835,276 | 60% | ||
komedi | 0 | 278,835,276 | 60% | ||
funny-meme | 0 | 278,835,276 | 60% | ||
ottomanwhale | 0 | 278,835,276 | 60% | ||
music-maker | 0 | 278,835,276 | 60% | ||
trendingpost | 0 | 278,833,903 | 60% | ||
saiful39 | 0 | 563,641,676 | 100% | ||
topgame | 0 | 1,958,799,042 | 100% | ||
emenim | 0 | 566,820,303 | 100% | ||
xionic | 0 | 70,506,392 | 100% | ||
micaiah | 0 | 480,819,593 | 100% | ||
marlysa16 | 0 | 336,873,042 | 100% |
Google Assistant Chatbase useage very important for us. sometimes we want to more information & our ptoblemetic soluation. that time we knock to Googlr assistant chatbase & find out our answer. >I trying to use by mobile phone, so many time i trying it but i can't to this. I think this chatbase not available for mobile phone. **@cm-steem Thank you so much for your kind information**
author | angelina66 |
---|---|
permlink | re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t160508797z |
category | |
json_metadata | {"tags":["google"],"app":"steemit/0.1","users":["cm-steem"]} |
created | 2018-03-26 16:05:21 |
last_update | 2018-03-26 16:06:51 |
depth | 1 |
children | 0 |
last_payout | 2018-04-02 16:05:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.045 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 386 |
author_reputation | 1,649,340,563,353 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,723,197 |
net_rshares | 24,450,990,427 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 24,450,990,427 | 4% |
Very nice post and good information
author | atjehsteemit |
---|---|
permlink | re-cm-steem-google-assistant-chatbase-analytics-guide-20180325t234524566z |
category | |
json_metadata | {"tags":["google"],"app":"steemit/0.1"} |
created | 2018-03-25 23:45:27 |
last_update | 2018-03-25 23:45:27 |
depth | 1 |
children | 0 |
last_payout | 2018-04-01 23:45:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 1,134,338,995,221 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,588,601 |
net_rshares | 6,112,747,606 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 6,112,747,606 | 1% |
i don't knew about Google have any Chatbase, if it have then it is very well for us. how can I Register on Chatbase?? I am very intersted & excited so @cm-steem you if you have any link fot registration so give me please. I needed.
author | ava66 |
---|---|
permlink | re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t161456272z |
category | |
json_metadata | {"tags":["google"],"users":["cm-steem"],"app":"steemit/0.1"} |
created | 2018-03-26 16:15:09 |
last_update | 2018-03-26 16:15:09 |
depth | 1 |
children | 2 |
last_payout | 2018-04-02 16:15:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.045 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 232 |
author_reputation | 204,104,148,889 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,724,884 |
net_rshares | 24,450,990,427 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 24,450,990,427 | 4% |
https://chatbase.com/welcome Uses a google authentication system, so make a google account :)
author | cm-steem |
---|---|
permlink | re-ava66-re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t195806058z |
category | |
json_metadata | {"tags":["google"],"links":["https://chatbase.com/welcome"],"app":"steemit/0.1"} |
created | 2018-03-26 19:58:06 |
last_update | 2018-03-26 19:58:06 |
depth | 2 |
children | 1 |
last_payout | 2018-04-02 19:58:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 58,522,774,254,119 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,759,402 |
net_rshares | 879,115,782 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zipity | 0 | 879,115,782 | 100% |
okay. thanks for your kind information.
author | ava66 |
---|---|
permlink | re-cm-steem-re-ava66-re-cm-steem-google-assistant-chatbase-analytics-guide-20180327t074636181z |
category | |
json_metadata | {"tags":["google"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-03-27 07:46:39 |
last_update | 2018-03-27 07:46:39 |
depth | 3 |
children | 0 |
last_payout | 2018-04-03 07:46:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 204,104,148,889 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,847,357 |
net_rshares | 0 |
author | dmilliz |
---|---|
permlink | re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t002255301z |
category | |
json_metadata | {"tags":["google"],"app":"steemit/0.1"} |
created | 2018-03-26 00:22:57 |
last_update | 2018-03-26 00:22:57 |
depth | 1 |
children | 0 |
last_payout | 2018-04-02 00:22:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.304 HBD |
curator_payout_value | 0.099 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 252,325,572,793,175 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,592,779 |
net_rshares | 159,843,113,405 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 158,931,437,779 | 27% | ||
zipity | 0 | 911,675,626 | 100% |
You got a 66.67% upvote and resteem from @ebargains courtesy of @cm-steem. Thank you for using the @ebargains UPVOTE and RESTEEM bot. If you are looking to earn a passive no hassle return on your Steem Power, delegate your SP to @ebargains by clicking on one of the ready to delegate links: [50SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=50%20SP) | [100SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=100%20SP) | [250SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=250%20SP) | [500SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=500%20SP) | [1000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=1000%20SP) | [5000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=5000%20SP) | [Custom Amount](https://steembottracker.com/delegation.html?delegatee=ebargains) You will earn 80% of the voting bot's earnings based on your delegated SP's prorated share of the bot's SP pool at the end of EACH voting round! That is up to 38.5% APR! You can also undelegate at anytime.
author | ebargains |
---|---|
permlink | re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t002629372z |
category | |
json_metadata | {"app":"postpromoter/1.9.2"} |
created | 2018-03-26 00:26:30 |
last_update | 2018-03-26 00:26:30 |
depth | 1 |
children | 0 |
last_payout | 2018-04-02 00:26:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.067 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,292 |
author_reputation | 46,529,372,336,823 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,593,166 |
net_rshares | 26,972,041,484 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steem.services | 0 | 26,972,041,484 | 25% |
nice post @cm-steem >* You can use Tisko Bot to promote your post. Send 0.200 STEEM/SBD and the URL in the memo to @tisko to use the bot for a resteem and to get 5 good upvots. >[Click here to see how to use Tisko Bot.](https://steemit.com/ts/@tisko/tisko-bot-faq)
author | hak4life |
---|---|
permlink | re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t182155935z |
category | |
json_metadata | {"tags":["google"],"users":["cm-steem","tisko"],"links":["https://steemit.com/ts/@tisko/tisko-bot-faq"],"app":"steemit/0.1"} |
created | 2018-03-26 18:22:00 |
last_update | 2018-03-26 18:22:00 |
depth | 1 |
children | 0 |
last_payout | 2018-04-02 18:22:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 264 |
author_reputation | 8,256,053,055 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,745,401 |
net_rshares | 0 |
Google always gives us wonderful and interesting facilities and product... Chatbase is one of them, It has really amazing facilities...specially Improve bot accuracy...its just fabulous.. I have a question..i use it in laptop. Is chatbase mobile apps has been launched?? @cm-steem
author | prince121 |
---|---|
permlink | re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t063250962z |
category | |
json_metadata | {"tags":["google"],"users":["cm-steem"],"app":"steemit/0.1"} |
created | 2018-03-26 06:32:51 |
last_update | 2018-03-26 06:32:51 |
depth | 1 |
children | 2 |
last_payout | 2018-04-02 06:32:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.309 HBD |
curator_payout_value | 0.102 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 282 |
author_reputation | 9,599,341,656,885 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,637,893 |
net_rshares | 161,987,811,582 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 161,987,811,582 | 27% |
> Is chatbase mobile apps has been launched?? Not sure, I'm only using the web interface for their analytics, it does appear that they offer A/B testing functionality to mobile devices, that'd be great in the google assistant! I don't see any official chatbase android app though.
author | cm-steem |
---|---|
permlink | re-prince121-re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t121053088z |
category | |
json_metadata | {"tags":["google"],"app":"steemit/0.1"} |
created | 2018-03-26 12:10:54 |
last_update | 2018-03-26 12:10:54 |
depth | 2 |
children | 1 |
last_payout | 2018-04-02 12:10:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 281 |
author_reputation | 58,522,774,254,119 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,683,101 |
net_rshares | 0 |
Thanks @cm-steem.. If there have no chatbase official mobile apps, hope that mobile apps will be launched soon...
author | prince121 |
---|---|
permlink | re-cm-steem-re-prince121-re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t124727377z |
category | |
json_metadata | {"tags":["google"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-03-26 12:47:30 |
last_update | 2018-03-26 12:47:30 |
depth | 3 |
children | 0 |
last_payout | 2018-04-02 12:47:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 9,599,341,656,885 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,688,729 |
net_rshares | 0 |
@cm-steem its really amazing. thanks for this important information share with us. I have question for you. if i lost my code then what can i do?
author | rehenuma |
---|---|
permlink | re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t194102047z |
category | |
json_metadata | {"tags":["google"],"users":["cm-steem"],"app":"steemit/0.1"} |
created | 2018-03-26 19:41:09 |
last_update | 2018-03-26 19:41:09 |
depth | 1 |
children | 2 |
last_payout | 2018-04-02 19:41:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.103 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 145 |
author_reputation | 605,322,909,819 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,756,951 |
net_rshares | 42,789,233,248 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 42,789,233,248 | 7% |
If you lost your chatbase api key code? You can easily retrieve it from their web ui.
author | cm-steem |
---|---|
permlink | re-rehenuma-re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t194302108z |
category | |
json_metadata | {"tags":["google"],"app":"steemit/0.1"} |
created | 2018-03-26 19:43:03 |
last_update | 2018-03-26 19:43:03 |
depth | 2 |
children | 1 |
last_payout | 2018-04-02 19:43:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 58,522,774,254,119 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,757,234 |
net_rshares | 0 |
oh i see. that's good. @cm-steem thanks for your feedback. tomorrow i will be registerd on here. i hope it will be well.
author | rehenuma |
---|---|
permlink | re-cm-steem-re-rehenuma-re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t200744074z |
category | |
json_metadata | {"tags":["google"],"users":["cm-steem"],"app":"steemit/0.1"} |
created | 2018-03-26 20:07:48 |
last_update | 2018-03-26 20:07:48 |
depth | 3 |
children | 0 |
last_payout | 2018-04-02 20:07:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 120 |
author_reputation | 605,322,909,819 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,760,740 |
net_rshares | 0 |
nice information&post @upvote & @resteem done
author | saiful39 |
---|---|
permlink | re-cm-steem-google-assistant-chatbase-analytics-guide-20180326t025511573z |
category | |
json_metadata | {"tags":["google"],"users":["upvote","resteem"],"app":"steemit/0.1"} |
created | 2018-03-26 02:55:15 |
last_update | 2018-03-26 02:55:15 |
depth | 1 |
children | 0 |
last_payout | 2018-04-02 02:55:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 9,197,601,696,972 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,610,930 |
net_rshares | 0 |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/cm-steem__google-assistant-chatbase-analytics-guide.mp3) Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvote this reply.
author | tts |
---|---|
permlink | re-google-assistant-chatbase-analytics-guide-20180325t230126 |
category | |
json_metadata | "" |
created | 2018-03-25 23:01:27 |
last_update | 2018-03-25 23:01:27 |
depth | 1 |
children | 0 |
last_payout | 2018-04-01 23:01:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.294 HBD |
curator_payout_value | 0.095 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 359 |
author_reputation | -4,535,154,553,995 |
root_title | "Google Assistant Chatbase Analytics guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,584,030 |
net_rshares | 153,716,411,579 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 152,818,690,172 | 27% | ||
zipity | 0 | 897,721,407 | 100% |