How to Program a Conversation with Alexa (Python & AWS Lambda) - Part 2

Поділитися
Вставка
  • Опубліковано 1 лис 2024

КОМЕНТАРІ • 50

  • @kirankumarb2190
    @kirankumarb2190 3 роки тому

    Great explanation 👍 Thank you bro ☺️

  • @techdiscussion3617
    @techdiscussion3617 5 років тому

    Hi Keith,
    How to approach the problem below
    I have to create a reusable library that can convert a paragraph of spoken english to written english. For example, "two dollars" should be converted to $2. Abbreviations spoken as "C M" or "Triple A" should be written as "CM" and "AAA" respectively.

  • @huichenli5411
    @huichenli5411 6 років тому

    Hi Keith, Nice video! I'm wondering is there a way for an Alexa skill to receive input from a server and send logs back? Thanks!

  • @techtalksdotin
    @techtalksdotin 4 роки тому

    Hey Keith, can u also do one for calling api either get or post with some body message over python please ?

  • @dotkoon
    @dotkoon 3 роки тому

    Ty for this video 😁

  • @nogxx95
    @nogxx95 6 років тому

    I have a question about the code template that you used. Did you write it yourself and may I use it for any of my own projects? And if not, where did you get it from? I'm trying to create a little interactive story for the Amazon alexa games skills challange. Thanks!

    • @KeithGalli
      @KeithGalli  6 років тому +1

      I found an AWS example project and stripped all the unneeded/complicated stuff away so that it could be easily used for many different Python Alexa projects. Feel free to go ahead and use it! That's why I posted it on GitHub :)

    • @nogxx95
      @nogxx95 6 років тому

      Thanks a lot man, you are my hero! :)

  • @gaganmishra1000
    @gaganmishra1000 4 роки тому

    Hi Keith,
    Can you please make a video on progressive responses in alexa using python!.

  • @nazaninkhazaeefarid8757
    @nazaninkhazaeefarid8757 4 роки тому

    Keith please teach us how to change a device shadow from skill . :( Do you still check this page?

  • @arunvenkat3833
    @arunvenkat3833 5 років тому

    Hey, It's really a great video. Could you help me? how to use/handle fallback intent in Python? and how to fetch a particular string from the intent?

    • @KeithGalli
      @KeithGalli  5 років тому +1

      To add fallback intent, add an "elif intent_name == "AMAZON.FallbackIntent" in your on_intent function before the else statement. Then if that case happens you will want to create a new response (formatted the same way as our other responses) called like get_fallback_response() that is called. This fallback intent model is automatically built with your alexa skill and should handle utterances that don't match any of your other intents.
      To get a particular string from the intent, use the intent slots talked about in this video. There is a bunch of built-in intent slot values (we used name in this video, but there are many others). If you need the whole string, look into Amazon.Literal intent slot.

    • @arunvenkat3833
      @arunvenkat3833 5 років тому

      @@KeithGalli thank you so much...

  • @gyulnaragrigoryan7256
    @gyulnaragrigoryan7256 5 років тому

    Thank you! Very useful :)

  • @ryanm.122
    @ryanm.122 4 роки тому

    ​ Keith Galli how would you connect this to an app you have created?

  • @Aley676
    @Aley676 6 років тому

    this was so so so helpful

  • @andenkrusiv1385
    @andenkrusiv1385 4 роки тому

    Hey this is really helpful.. thanks by the way "De" mean the Deutschland (German language) :-)

  • @nogxx95
    @nogxx95 6 років тому

    great stuff. thanks a lot

  • @nazaninkhazaeefarid8757
    @nazaninkhazaeefarid8757 4 роки тому

    can you please make a video on how to connect it to AWS IOT and make a thing and control it?

  • @mefew
    @mefew 4 роки тому

    Does anyone know if we can program Alexa to ask a follow up question and wait for a response? Then use the response to run more code?

  • @johnc0531
    @johnc0531 3 роки тому

    No problem i understand

  • @michaelturner7804
    @michaelturner7804 5 років тому +1

    Thank you! Such a dreaded response at 8:25😖

  • @vijendersinghshekhawat6244
    @vijendersinghshekhawat6244 5 років тому

    Great thanks

  • @scriptkiddie5079
    @scriptkiddie5079 5 років тому

    Hi Keith I'm getting Keyerror for session and request in lambda_handler .pls help me

  • @dhavalshah222
    @dhavalshah222 5 років тому

    hey .keith !! how to send alexa message to a specific mobile number

  • @jeansouza6896
    @jeansouza6896 4 роки тому

    You’re the best!

  • @Aley676
    @Aley676 6 років тому

    thankyou so much

  • @ramakrishnakillana4225
    @ramakrishnakillana4225 6 років тому

    Can you please share..progressive response example using new sdk n python

    • @KeithGalli
      @KeithGalli  6 років тому

      Can you send me some links where I can find more information on these things?

  • @dhavalshah222
    @dhavalshah222 5 років тому +1

    how to give response back in a good manner if user ask the unwanted question

    • @KeithGalli
      @KeithGalli  5 років тому +1

      There's a "fallback intent" that you can use if the user asks something that isn't recognized and you can respond with something like "Sorry I don't understand, please ask a different question"

  • @Aley676
    @Aley676 6 років тому

    hey, i downloaded the alexa app and set up my echo dot. i set it up with the same account as my developer account and my skill appeared as being enabled. however alexa still didnt recognise what i was talking about when trying to run the skill. any idea why?

    • @KeithGalli
      @KeithGalli  6 років тому

      Alex xx you were saying "Alexa run " ?

    • @Aley676
      @Aley676 6 років тому

      yeah

    • @KeithGalli
      @KeithGalli  6 років тому

      And it's working fine in the alexa skills kit test simulator?

    • @Aley676
      @Aley676 6 років тому

      ya

    • @KeithGalli
      @KeithGalli  6 років тому

      Hmm if the app says the skill is enabled, it should be recognized by your echo dot. Try rebuilding the model on the Alexa skills kit site. Also try changing the invocation phrase.

  • @Aley676
    @Aley676 6 років тому

    you are amazing

  • @nurzhani1506
    @nurzhani1506 6 років тому

    Please make a video about ADT in Python))

  • @hiteshsubnani5605
    @hiteshsubnani5605 5 років тому

    How Alexa can send an Audio response please make a video on it

  • @krishdhameliya2651
    @krishdhameliya2651 5 років тому

    yo, Keith where did you find this framework?

    • @KeithGalli
      @KeithGalli  5 років тому +1

      Did you check the github link: github.com/KeithGalli/Alexa-Python ? I set up this framework by taking apart the one alexa-python example that I could find on AWS lambda

  • @MohamedAfzal
    @MohamedAfzal 6 років тому +1

    hi keith, i need some help from you. can you pm

  • @kronosDE
    @kronosDE 5 років тому

    DE ist german dude

  • @kronosDE
    @kronosDE 5 років тому

    Hey Keith, I like the content you do but there are some things you could change:
    * stop doing this bs with subscribe stuff or just keep it short
    * be more prepared or cut your videos, so only the relevant content is shown
    when you do this whole thing in a more mature way and not like a little kid, than you will get more subscriber for sure. I think your content is also for more advanced people so stop this little kid bs. Thanks!