David Hundley
David Hundley
  • 83
  • 18 962
Using OpenAI, LangChain, and Gradio to Build Custom GenAI Applications
Using OpenAI, LangChain, and Gradio to Build Custom GenAI Applications
มุมมอง: 6 199

วีดีโอ

ความคิดเห็น

  • @faicalammisaid3705
    @faicalammisaid3705 3 วันที่ผ่านมา

    U a legend for going through there work and explaining it turning it up side down mechanic style 😎

  • @mubashirali5287
    @mubashirali5287 หลายเดือนก่อน

    Hi, great video! Can you share the kaggle link?

  • @yotubecreators47
    @yotubecreators47 2 หลายเดือนก่อน

    @26:13 actually this is one the most interesting part of this stream

  • @tomturbo12345
    @tomturbo12345 2 หลายเดือนก่อน

    Hey David, would it be possible for you to make the code available again? It would be greatly appreciated, as it was a valuable resource for understanding the implementation in more detail. BTW thanks for your excellent content and for sharing your knowledge with the community!

  • @SudaisAlam-w1k
    @SudaisAlam-w1k 3 หลายเดือนก่อน

    You're good Man!

  • @doochi2532
    @doochi2532 4 หลายเดือนก่อน

    21:36

  • @SpartanPanda
    @SpartanPanda 5 หลายเดือนก่อน

    Good Detailed tutorial - well explained

  • @bello3137
    @bello3137 7 หลายเดือนก่อน

    Thank you so much for this. are you going to cover for other benchmarks?, or same methods could be applied as well ?. Also, learned something new, setting a cache_dir path so you can know where they're located and when not needed you can delete it to save space. Thanks.

    • @bello3137
      @bello3137 7 หลายเดือนก่อน

      ahhh, cache_dir not working.

  • @chikosan99
    @chikosan99 8 หลายเดือนก่อน

    The ChatOpenAI function accept models other than openAI ? i saw this from langchain_community.llms.mlx_pipeline import MLXPipeline llm = MLXPipeline.from_model_id( "mlx-community/quantized-gemma-2b-it", pipeline_kwargs={"max_tokens": 10, "temp": 0.1}, ) Thanks

  • @MrAhsan99
    @MrAhsan99 8 หลายเดือนก่อน

    Thanks for explaining everything so clearly and thoroughly

  • @chikosan99
    @chikosan99 8 หลายเดือนก่อน

    Thanks a lot! great session

  • @JohnMedley-uz5ep
    @JohnMedley-uz5ep 9 หลายเดือนก่อน

    How do you make a twitter cash tag?

  • @Александртень-ф4т
    @Александртень-ф4т 9 หลายเดือนก่อน

    Is it just me or is the video stretched vertically?

    • @dkhundley
      @dkhundley 9 หลายเดือนก่อน

      Not just you. I explain why at the outset. 😅

  • @harishkhollam
    @harishkhollam 9 หลายเดือนก่อน

    Thank you for expressing your thoughts and experiences. Much appreciated. Keep posting.

  • @samannize
    @samannize 9 หลายเดือนก่อน

    real bullshit! Binary & K-Means, no way😅

  • @pinkucat
    @pinkucat 10 หลายเดือนก่อน

    please give source code

  • @ansarkhattak1299
    @ansarkhattak1299 11 หลายเดือนก่อน

    Hi Sir where is the source code Share ir Please!

  • @ansarkhattak1299
    @ansarkhattak1299 11 หลายเดือนก่อน

    Sir where is the source code please share it

  • @elleryfamilia8291
    @elleryfamilia8291 ปีที่แล้ว

    David, great video. Keep it going! I'd be great to walk through some code on the video btw.

  • @stepiglia_
    @stepiglia_ ปีที่แล้ว

    Great video!

  • @alfredohaynes5752
    @alfredohaynes5752 ปีที่แล้ว

    promo sm

  • @decaturdev7127
    @decaturdev7127 ปีที่แล้ว

    Why would I follow you if you don't even allow pelple to save your videos?

  • @wuxianggujun979
    @wuxianggujun979 ปีที่แล้ว

    I don't understand why it takes so long for the beginning of the video to wait

  • @Nicolas-pn1sn
    @Nicolas-pn1sn ปีที่แล้ว

    Such a good video! Thanks!

  • @jums
    @jums ปีที่แล้ว

    Any call to openai api will cost tokens. Will langchain help to reduce the tokens being consumed? Or langchain only consolidates all the request but same token will be consumed compared to asking them 1 by 1?

    • @jums
      @jums ปีที่แล้ว

      Great content btw

    • @SFgamer
      @SFgamer ปีที่แล้ว

      Someone would up with a way to where we can bypass all of that.

  • @nishantkumar-lw6ce
    @nishantkumar-lw6ce ปีที่แล้ว

    Can you do a flowise with Gradio for UI and deploy it for a real time use case?

  • @insight-guy
    @insight-guy ปีที่แล้ว

    Thanks David. Appreciate your insights and time spent on the video.

  • @joepbaks
    @joepbaks ปีที่แล้ว

    Thanks for this video David. I created a python application which functions as a chatbot. Trained on some PDF-files and linked to openai to give users answers based on this pdf. For four days, i am a noob with regards to coding/hosting/etc., I have tried everything from Replit, google cloud, Heroku to deploy my application to the web. It just doesn't seem to work. could you maybe give me some tips on how to do this? Are you familiar with this?

    • @gauravdhir7905
      @gauravdhir7905 ปีที่แล้ว

      Hey, can you suggest any tutorial for chatbot application using pdf

  • @elegantdesignsandanimation2769
    @elegantdesignsandanimation2769 ปีที่แล้ว

    How to extract particular data like names or contacts from pdf files and save in excel sheet using Langchain, Open AI and ChatGPT?

    • @dkhundley
      @dkhundley ปีที่แล้ว

      It’d be a little complex but it’s possible. ChatGPT can return responses in a tabular format, so you could prompt engineer your way to this. The one challenge would be converting the response from OpenAI for appropriate use. Even though ChatGPT can return tabular responses, they are done in the form of markdown strings. So you’d have to convert the markdown strings into something else first. Here are the precise steps I’d take: 1. Load in the PDF file with your data. 2. Generate a prompt asking ChatGPT to extract information and return in a tabular format. 3. Figure out a way in Python to take that tabular string and convert it into a Pandas dataframe. 4. Save out the Pandas dataframe as an excel file using the built in “to_excel()” function. Just be aware that if you do this, you are giving your own proprietary data to OpenAI who stores it for 30 days.

    • @elegantdesignsandanimation2769
      @elegantdesignsandanimation2769 ปีที่แล้ว

      @@dkhundley Thanks for reply, Can you please make one video on this topic so that I can follow the mentioned steps.

  • @jackmartin1146
    @jackmartin1146 ปีที่แล้ว

    Hey David, great video! I have an idea of creating a Project Proposal Generator where a User specify basic things like Objectives and Goal etc, and it creates the Roles/Responsibilities etc in the Project Proposal. Would love to see if you can make it!

    • @dkhundley
      @dkhundley ปีที่แล้ว

      Hi there Jack. It’d be totally possible to make that as it’d use basically the same framework that I used for the latter project. I don’t have the time to code it up myself, but the code that built the Business Profiler is linked in the description of this video, and I also just did a live stream on May 5 walking folks through every step for enabling something like this. 😃

    • @jackmartin1146
      @jackmartin1146 ปีที่แล้ว

      @@dkhundley Awesome, could you share the link of that specific Livestream, would love to check, also thanks for your response.

  • @LorenBaird
    @LorenBaird ปีที่แล้ว

    About 54 min in your sound cuts out.

  • @brettsnow5005
    @brettsnow5005 ปีที่แล้ว

    You doing a really great job on your channel! You should use a service such as *Promo sm*!

  • @saikumarreddyyeddula5043
    @saikumarreddyyeddula5043 2 ปีที่แล้ว

    Thanks a lot David. That was really helpful. AWS is evolving super fast and the deep dive Sagemaker videos from amazon are already super old now. Looking forward to the next videos of yours.

  • @vieome101
    @vieome101 2 ปีที่แล้ว

    A white rabbit ...

  • @johnnyz9368
    @johnnyz9368 2 ปีที่แล้ว

    😇 Promo>SM!!

  • @Sharkypal9048
    @Sharkypal9048 3 ปีที่แล้ว

    I’m also looking forward to that new Kirby game!

  • @dkhundley
    @dkhundley 3 ปีที่แล้ว

    Skip forward a minute. I forgot my headphones weren't paired to my computer for that first second. Sorry about that. :)

  • @keyonv
    @keyonv 3 ปีที่แล้ว

    Missed the stream, but tuned in to the video. Informative video. I think you explained concepts well. This is coming from me - a beginner with no data science background. Happy birthday, by the way! Hope you have a great day today. Looking forward to more videos! - Kyan V.

  • @007Derin
    @007Derin 3 ปีที่แล้ว

    I missed the livestream but definitely glad this was available for me to watch!