Google Assistant Quick Start for Developers

  Рет қаралды 84,336

Fireship

Fireship

Күн бұрын

Пікірлер
@Fireship
@Fireship 6 жыл бұрын
I was blown away by the Google Assistant demos at the I/O 2018 keynote. Building your own assistant app is surprisingly easy when you combine Dialogflow and Cloud Functions.
@vibhukhurana3575
@vibhukhurana3575 5 жыл бұрын
Slack team link which you mentioned in the description is inactive now. How can I be a member of your slack channel?
@rtpHarry
@rtpHarry 4 жыл бұрын
Now that we are a year on, do you still think voice has a big future with business? It seems to me that the chatbot craze has faded, but I've got smart speakers in every room in my house and on my phone. I use it all the time, but not seen much from brands embracing the tech yet.
@TechMalaya
@TechMalaya 6 жыл бұрын
the capabilities of google assistant is so mind blowing
@jack-alvin
@jack-alvin 2 жыл бұрын
Why c++ is used for building google assistant why not python???,
@galavizK
@galavizK 11 ай бұрын
Ask google
@mateja176
@mateja176 6 жыл бұрын
Can't wait to return to the angular basics series, but damn, this is interesting!
@Fireship
@Fireship 6 жыл бұрын
Look for the next basics video on Monday :)
@MercyFromOverwatch2
@MercyFromOverwatch2 3 жыл бұрын
Jeff is my favourite tech youtuber!
@matthiaskublbock9149
@matthiaskublbock9149 6 жыл бұрын
Hey! What microphone are you using? Because it sounds so clean
@Fireship
@Fireship 6 жыл бұрын
Thank you :) It's just a $50 Audio-technica USB mic, nothing fancy.
@vcccchhh4443
@vcccchhh4443 6 жыл бұрын
It's awesome . we are thirsty for your awesome episodes
@kyranmoore1132
@kyranmoore1132 6 жыл бұрын
Thanks Jeff for showing just how easy it is! Another great video!
@Fireship
@Fireship 6 жыл бұрын
Thank you, building an assistant app is not hard at all if you're comfortable with nodejs.
@kyranmoore1132
@kyranmoore1132 6 жыл бұрын
Angular Firebase it wasn’t something I’d actively looked into previously. But as a TS dev, this has now certainly given me a bit of inspiration! Keep up the good work!
@skgaming3562
@skgaming3562 5 жыл бұрын
what linux distro are you using?
@ismail7947
@ismail7947 6 жыл бұрын
how to build it on my own device?
@Buckleupwithme
@Buckleupwithme 3 жыл бұрын
Is there is any way to change google assistant voice programmatically through node js ?
@rahulvanmali1406
@rahulvanmali1406 6 жыл бұрын
Since I am angular developer ... Learning ionic native would be easy?
@MuhammadNurdinnewspecies
@MuhammadNurdinnewspecies 4 жыл бұрын
It's work on http? Or only https?
@HansSchiefelbein
@HansSchiefelbein 6 жыл бұрын
Do you have a good tutorial for non-developers? I’ve built an Alexa Skill and want to replicate it on Google Assistant.
@MahmudYuldashev
@MahmudYuldashev 4 жыл бұрын
Check blondiebytes on dialogflow.
@aaronharding3695
@aaronharding3695 4 жыл бұрын
i have this functions folder inside a react project which was also written with typescript. when deploying, typescript was failing. i was getting errors like: ../../node_modules/@types/react/index.d.ts:3144:13 - error TS2717: Subsequent property declarations must have the same type. Property 'use' must be of type 'SVGProps', but here has type 'SVGProps'. so it was looking at d.t.s files from the parent node_modules project. so i added "skipLibCheck" to true in my tsconfig.json and it started working again.
@sandyveliz5269
@sandyveliz5269 6 жыл бұрын
OMG Thanks!!! i was waiting this for so long! Thank you !!!!!
@Fireship
@Fireship 6 жыл бұрын
Thanks for watching! I was super motivated to make this after seeing the Google I/O keynote.
@satishwadekar606
@satishwadekar606 6 жыл бұрын
Can we have a web-hook between Assistant & Dialogflow ? because i want to make some decision making before request goes to Dialogflow ?
@WhimsyPC
@WhimsyPC 5 жыл бұрын
You will have to use Actions-SDK in that case but that would be the replacement of Dialogflow, not something between Assistant & Dialogflow.
@GaneshPatil-bs7er
@GaneshPatil-bs7er 6 жыл бұрын
thanks in advanced I'm getting with simulator getting response with final response not set
@souvikduttcreations4329
@souvikduttcreations4329 5 жыл бұрын
Can you help me in preparing trivia games questionnaire. I cannot edit trivia game question template. But I have made another question and answer in spread sheet format.Can you personally prepare it on trivia template? Please
@haustimp
@haustimp 2 жыл бұрын
This is amazing - thank you so much!!
@carpfishprodcuts
@carpfishprodcuts 6 жыл бұрын
Crazyyy more dialogflow pleasee
@Fireship
@Fireship 6 жыл бұрын
It can get way more advanced from here, I'll do more in the future.
@saukraya3254
@saukraya3254 4 жыл бұрын
If only this work with LCARS, then it will be perfect.
@dango_3016
@dango_3016 5 жыл бұрын
Hey, it's not working for me. I copied the code but keep getting the following error in the Firebase Functions Log: FetchError: request to angularfirebase.com/lessons failed, reason: getaddrinfo ENOTFOUND angularfirebase.com angularfirebase.com:443 I'm completely new to Node and Firebase. Does anyone have a suggestion?
@manishpingale6558
@manishpingale6558 5 жыл бұрын
I want to make this app in Android help me
@bashful88
@bashful88 6 жыл бұрын
Thanks for the great tutorial. I ran into a problem. When I run the command firebase deploy --only functions I am getting the following error. Could you please help? no such file or directory, open 'C:\voice assistant\assistantapp4\%RESOURCE_DIR%\package.json' npm ERR! enoent This is related to npm not being able to find a file.
@EnginMarshall
@EnginMarshall 6 жыл бұрын
This is a known problem with the Firebase CLI 3.17.0 through at least 3.17.3, but only on Windows. You can fix this on your machine by editing firebase.json at the root of your project and replacing $RESOURCE_DIR with %RESOURCE_DIR% in the npm commands you see there. The former is the unix syntax way to use an environment variable, whereas the latter is the Windows command shell syntax. Since you're using Windows, you need to use the Windows syntax. Source: stackoverflow.com/questions/48370690/cloud-functions-deploy-error-during-lint-on-windows-enoent-enoent-no-such-fil
@bashful88
@bashful88 6 жыл бұрын
@@EnginMarshall thank you :) it worked...
@troyclark4350
@troyclark4350 6 жыл бұрын
Awesome video. You are always provoking great new ideas thanks
@carlossegura403
@carlossegura403 6 жыл бұрын
awesome tutorial!
@CAAAB21
@CAAAB21 6 жыл бұрын
Excellent video you are the best.Could you give us a example of curl with this technology, of course with node js and TypeScript?
@adriannlara
@adriannlara 6 жыл бұрын
to pro for me U_U, greate video anyway
@carrillocarlosce
@carrillocarlosce 6 жыл бұрын
Thanks man I love your videos (y)
@Fireship
@Fireship 6 жыл бұрын
Thanks for watching :)
@harpymaslow
@harpymaslow 6 жыл бұрын
You rock, man. Thanks
@fati4274
@fati4274 3 жыл бұрын
Thanks
@AbhishekKumar-mq1tt
@AbhishekKumar-mq1tt 6 жыл бұрын
Thank u for this awesome video
@Gravitytent
@Gravitytent 4 жыл бұрын
I wish I were smarter
@amangadpale6251
@amangadpale6251 5 жыл бұрын
Source codes please @Fireship
@asifa9853
@asifa9853 4 жыл бұрын
I just want to open my activity by google assistant. Can anybody help ? like "Create and expense in MyDemoApp" or "open expense in mydemoapp" , hot to achieve this.
@danielsimionescu298
@danielsimionescu298 6 жыл бұрын
Cool :D
@sidd_yt_88
@sidd_yt_88 3 жыл бұрын
Op
@χρηστοςΜπακολουκας
@χρηστοςΜπακολουκας 5 жыл бұрын
SOXRAMPRH OLOI
The Dome Paradox: A Loophole in Newton's Laws
22:59
Up and Atom
Рет қаралды 756 М.
Building a Chatbot with Dialogflow and Google Cloud Platform
23:46
Google Cloud Tech
Рет қаралды 181 М.
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
25 crazy software bugs explained
16:50
Fireship
Рет қаралды 1,3 МЛН
100 Firebase Tips, Tricks, and Screw-ups
24:31
Fireship
Рет қаралды 192 М.
France l can you solve?? l Olympiad Math Exponential Problem
10:17
Introduction to Custom Actions for the Google Assistant SDK
3:15
Google for Developers
Рет қаралды 57 М.
Devin just came to take your software job… will code for $8/hr
5:13
The plan to break apart Google... RIP Chrome
4:07
Fireship
Рет қаралды 889 М.
Firebase - Back to the Basics
25:23
Fireship
Рет қаралды 600 М.
Reactive Forms  - The Basics
15:48
Fireship
Рет қаралды 257 М.
How To Focus On The Right Problems
16:57
Y Combinator
Рет қаралды 32 М.