Azure OpenAI 101: Powering ChatGPT with your Data - A Deep Dive

Поделиться
HTML-код
  • Опубликовано: 7 фев 2025

Комментарии • 37

  • @duanerobinson9013
    @duanerobinson9013 Год назад +1

    Awesome video! Low key, sober, and packed with information.

  • @chandrachoodR
    @chandrachoodR Год назад +1

    Really fantastic video on using the Azure openai to create smart apps and services , thanks for

  • @parkerrex
    @parkerrex Год назад +1

    Finally someone I can understand 😂

  • @yazardari4237
    @yazardari4237 Год назад +3

    Excellent video, exhaustive and comprehensive as always

    • @abdulzedan
      @abdulzedan  Год назад

      Appreciate the kind words, thank you!

  • @maxtriplex7397
    @maxtriplex7397 Год назад +1

    Been waiting for this video! Thanks a lot!

  • @FlameOfAnor9
    @FlameOfAnor9 Год назад +1

    Thanks Abdul. Great work!

    • @abdulzedan
      @abdulzedan  Год назад

      Thank you! I’m glad you enjoyed it ☺️

  • @ahmedt3069
    @ahmedt3069 Год назад +1

    Thank you abdul great work

    • @abdulzedan
      @abdulzedan  Год назад +1

      Thank you! I am glad you found it useful

  • @Shoaibkhan-oj3oe
    @Shoaibkhan-oj3oe Год назад +1

    is there any way to create an API for this same bot and use it in a custom website?

  • @czarahlvic4290
    @czarahlvic4290 Год назад +1

    Hi I just followed your video and experiencing this "The requested information is not found in the retrieved data. Please try another query or topic."
    kindly help

    • @abdulzedan
      @abdulzedan  Год назад +1

      This happens when the "retrieval" part of the RAG in Cog Search isn't fully optimized/configured. If you enable semantic search/vector search (now supported with Cognitive Search), this should go away. Sometimes, asking the question in a different way would also alleviate the issue you have!

  • @rmehdi5871
    @rmehdi5871 Год назад +2

    Great video, Abdul! In you scheme at 8:36, do you know a format of the information exchange between ACS and ChatGPT, namely between 1. User prompt/question and ACS; 2. From ACS to ChatGPT ("augmented prompt"?); and 3. Answer provided from ChatGPT? Are those JSON structures or in a different format? How to find and view those communication exchanges in the system? Thanks!

    • @abdulzedan
      @abdulzedan  Год назад

      Thank you! Not sure I get your question, I would reach out to Azure Support for clarity on this :)

  • @RobertoCarlosSanchez-g7u
    @RobertoCarlosSanchez-g7u Год назад +1

    Is there a way to integrate the power of web app like Rest API for my app? 🤔

    • @abdulzedan
      @abdulzedan  Год назад

      That's precisely what we're doing in this demonstration. By deploying into the web app, it is already leveraging the API's behind the scenes :)

    • @RobertoCarlosSanchez-g7u
      @RobertoCarlosSanchez-g7u Год назад

      @@abdulzedan Thanks for responding, what I was referring to is if there is any point where I can make calls from my application for the same chat, receiving responses about my own data including the references

  • @AshPrasad-fz7mr
    @AshPrasad-fz7mr Год назад +1

    Assuming we feed a csv of last month's sales data, can it answer, 'give me the top sellers?'

    • @abdulzedan
      @abdulzedan  Год назад

      No, the supported formats can be found here: learn.microsoft.com/en-us/azure/ai-services/openai/concepts/use-your-data#data-formats-and-file-types

  • @aliakseitsyuliou5681
    @aliakseitsyuliou5681 Год назад +1

    Nice video. But I still have no clue how should we resolve the problem with stateless data? Any tips?
    Upload the data set to the current session it's not a point at all. Just to play for fun(IMHO).

    • @abdulzedan
      @abdulzedan  Год назад

      Thank you for sharing your thoughts. In the video, this is why we're deploying what we're doing in the playground, to an Azure Web App. This way, it is no longer "stateless" and you can leverage it on an ongoing basis. Hope this helps :)

    • @aliakseitsyuliou5681
      @aliakseitsyuliou5681 Год назад +1

      @@abdulzedan thank you for the fast response. I'll check this possibility!

  • @CrispinCourtenay
    @CrispinCourtenay Год назад +1

    Curious, could you connect Kafka, Red Panda etc. to Azure Blob and then have ACS in a near real time streaming pipeline?

    • @parkerrex
      @parkerrex Год назад

      That’s what I’m Looking for. Any luck ?

  • @andypejman
    @andypejman Год назад +1

    Thank you, so in your example, what happens if you ask GPT something that it doesn't have the answer to from your own dataset? Does it try to make something up or does it just tell you it doesn't have the answer? Or is this something you have to prompt it so that it is trained in a certain way?

    • @abdulzedan
      @abdulzedan  Год назад +1

      Thank you for the comment! If you head to 25:52 in the video, I make a note of the "Limit responses to your data content" option. If this is selected, then the model will tell you it cannot retrieve/have the answer you are looking for. Additionally, in the system message, you can further augment the limit your responses to your data content by adding a system message that states how you would like the model to respond in situations where it doesn't know the answer. Hope this helps :)

    • @dannyparkins
      @dannyparkins Год назад +1

      @@abdulzedan I thought there is a "Temperature" setting that kind of determines how "creative" the model is allowed to be.

    • @abdulzedan
      @abdulzedan  Год назад

      This is also true here, in the right of the chat playground, under configuration, you will see the option "parameters". Here you can adjust the temperature value of the model!@@dannyparkins

  • @COLD17
    @COLD17 Год назад

    So how about you show how the indexes are created instead of just clicking through the portal of a finished setup?

  • @syedbabarali1
    @syedbabarali1 Год назад +1

    Nice tutorial @Abdul Zedan..
    I also did the same thing but I have stuck on a 'Authentication Not Configured' error while trying to run my app on 'Azure App Service' from Chatplayground. Could you please guide me on how to skip or bypass this page

    • @abdulzedan
      @abdulzedan  Год назад

      Thanks Babar! This can be due to invalid/missing permissions. Please visit: learn.microsoft.com/en-us/azure/ai-services/openai/concepts/use-your-data#important-considerations
      and configure the identity provider in the app!

    • @syedbabarali1
      @syedbabarali1 Год назад +1

      @@abdulzedan Thank your problem resolved

  • @haodeng9639
    @haodeng9639 Год назад +1

    The cost lots of token. I will think twice deploy any openai apps

  • @simmo2337
    @simmo2337 Год назад

    promo sm 👇

  • @dereksantossidi6850
    @dereksantossidi6850 10 месяцев назад

    Sounds very expensive.