ChatGPT Whisper with Power Automate (Voice to Text)

Sdílet
Vložit
  • čas přidán 25. 07. 2024
  • We have been conquering each piece of Chat GPT with Power Automate workflows. In my opinion that's where AI shines with a workflow. Using Power Automate we can streamline any process with an AI and cut down on the time spent with repetitive tasks. AI is all about efficiency!
    HTTP Call for ChatGPT Whisper-1 model, make sure to double check that a new more cost efficient model has not been released:
    {
    "$content-type": "multipart/form-data",
    "$multipart": [
    {
    "headers": {
    "Content-Disposition": "form-data; name=\"model\""
    },
    "body": "whisper-1"
    },
    {
    "headers": {
    "Content-Disposition": "form-data; name=\"file\"; filename=\"@{triggerBody()?['entity']['fileName']}\""
    },
    "body": {
    "$content-type": "audio/mp3",
    "$content": "@{outputs('Compose')}"
    }
    }
    ]
    }
    Using Power Automate with ChatGPT Whisper can streamline workflows by automating the transcription of audio inputs into text. This integration allows for seamless processing and analysis of voice data, enabling more efficient and accurate responses. Additionally, it can enhance productivity by automating repetitive tasks and facilitating real-time conversational interactions with AI.
    Chapters
    0:00 Introduction
    1:40 Creating an Instant Cloud Flow
    4:15 Using Whisper Documentation
    6:44 The HTTP Body for Whisper API
    9:00 The First Run
    12:20 Summarizing an Entire CZcams Video
    15:00 Calling GPT4o to Summarize
    18:00 Summarize and Translated to another language
    19:50 Conclusion
  • Věda a technologie

Komentáře • 9

  • @waleedkhan2500
    @waleedkhan2500 Před měsícem +1

    SO helpful - Your explanation and thought process are great to follow, feel like I learn so much when I watch these! Keep it up

    • @andrewhess123
      @andrewhess123  Před měsícem +1

      Thanks so much Waleed! Those are the goals of the videos and I'm glad we are hitting them!

  • @praveeng3921
    @praveeng3921 Před měsícem +1

    Nice one

    • @andrewhess123
      @andrewhess123  Před měsícem

      Thanks Praveen! Haven't forgot about your request 😀

    • @praveeng3921
      @praveeng3921 Před měsícem +1

      @@andrewhess123 haha thanks for remembering my request

  • @hammadyounas2688
    @hammadyounas2688 Před měsícem

    Great Work.
    Sir i request you a make a tutorial how to send document to chatgpt to extract information?

  • @hammadyounas2688
    @hammadyounas2688 Před měsícem

    Sir, Great tutorial.Can you please make a tutorial i have resume in attachment, how to send pdf as base64 to extract information.?

  • @DanielWeikert
    @DanielWeikert Před měsícem +1

    Why the $ symbol in fornt of certain attributes in the json? Thx

    • @andrewhess123
      @andrewhess123  Před měsícem

      Just habit, don't think it's 100% needed here, would have to try without but... it just signifies that it's metadata with specific property. More for visual, something I recognize. If you do without I assume it should work too.