Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Building Smart Actions with Firebase - DevLoop2020

Building Smart Actions with Firebase - DevLoop2020

Talk is beautifully crafted for beginners and intermediates who heard about Google Assistant but never explored before. This talk will provide you an extent level of journey how to start with it and for what purposes you can use Action on Google for your applications.

Me and Vrijraj will discuss about on how to create actions in dialogflow with simple response, Connect actions with Firebase to generate dynamic response.

Jaldeep Asodariya

January 04, 2020
Tweet

More Decks by Jaldeep Asodariya

Other Decks in Technology

Transcript

  1. Actions on Google with Firebase Building smart actions with Firebase

    Vrijraj Singh GDG Organizer & GDE, Web @VrijrajSingh Jaldeep Asodariya GDG Ahmedabad @jaldeepasodariy કેમ છો ?
  2. Intent Matching - Match and categorize user utterances to an

    intent. Entity Extraction - Identify key words and phrases spoken by the user. “ @
  3. Firebase is a unified app platform for Android, iOS and

    web development. firebase.google.com
  4. Real Time Database Store and sync the data in real-time

    • Real time syncing for JSON data • Collaborate across devices with ease • Build serverless apps • Optimized for offline uses • Strong user-based security
  5. var name="Name"; // Overwite the Data firebase.database().ref('data').set({name:name}); // Append the

    Data and create unique key firebase.database().ref('data').push({name:name});