L-9 Build a Q&A App with RAG, LangChain, and Open-Source LLMs | Step-by-Step Guide

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

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

  • @sangeethag8228
    @sangeethag8228 9 дней назад

    Thanks a lot, Madam !!!. You are awesome at Explaining things in a very calm and simple way, whereas some RUclipsrs exaggerate. :)

  • @sangeethag8228
    @sangeethag8228 9 дней назад

    If I have the option to subscribe 1M times, I will do so. But for one ID, there is only one subscription. U r awesome !!!!

  • @omkarsatapathy8209
    @omkarsatapathy8209 3 месяца назад +1

    Thank you so much, madam. You really considered my comment regarding RAG implementation without any secret key. Thank you so much again.. keep posting and keep growing !! I will definitely share this video with all my Network. Happy coding !

  • @neelamadhabkhaya98
    @neelamadhabkhaya98 3 месяца назад

    I have only 1 like option. Again and again try to like these videos. Really helpful.

  • @alexramos587
    @alexramos587 Месяц назад

    Thanks.

  • @arnavthakur5409
    @arnavthakur5409 2 месяца назад

    Very helpful for me

  • @itsmeuttu
    @itsmeuttu 3 месяца назад

    Very Helpful
    keep it up mam !!

  • @devavratpro7061
    @devavratpro7061 Месяц назад

    Thanks Aarohi Mam for your valuable video. Can I change prompt response format in such a way that it fills the details in a fixed template:, like, filling tender fields from the requirements/specifications in a pdf file? Please guide further through the details!

  • @soravsingla8782
    @soravsingla8782 Месяц назад

    Good work

  • @KPBhan
    @KPBhan 3 месяца назад

    Very nice and thank you very much.
    please help with training models ways or examples

  • @GradientPlayz
    @GradientPlayz 2 месяца назад

    You are the best

  • @zeadmostafa5100
    @zeadmostafa5100 3 месяца назад

    Thank you very much for your effort.
    I want to ask you if i can use colab or kaggle notebook instead of running the code in my local machine ?

  • @hendoitechnologies
    @hendoitechnologies 3 месяца назад

    post regular video about Generative AI - full course

  • @thomaseldhose1006
    @thomaseldhose1006 3 месяца назад

    How can I convert my unstructured data into structured data?

  • @hendoitechnologies
    @hendoitechnologies 3 месяца назад

    post video about how to fine-tune "Claude 3.5 sonnet API" - full course video for developers..please

  • @arshmaanali714
    @arshmaanali714 2 месяца назад

    Mam please create an intelligent chatbot using Streamlit and Langchain (RAG), where the
    chatbot can receive voice input in Urdu/Hindi, process it, and return both text and audio responses in
    Urdu/hindi. The chatbot should be able to interact with users fluently, allowing for seamless
    audio-to-text and text-to-audio communication in the Urdu/Hindi
    Workflow:
    ● Build the Streamlit interface for real-time Urdu/hindi audio input and output.
    ● Integrate Langchain (RAG) with an LLM (Language Model) API to generate dynamic responses
    based on the user’s input. (use PDF files only)
    ● Ensure the chatbot responds not only with a text-based answer in Urdu/Hindi but also converts that
    response back to audio and plays it for the user language.

  • @salah5894
    @salah5894 2 месяца назад

    please it said that i have to download the model and it took 9.5 GB , is it true ? or there is other method without downloading it

    • @CodeWithAarohi
      @CodeWithAarohi  2 месяца назад

      You need to download the pretrained model. You can try using some other LLM which is smaller as compare to this model.

    • @salah5894
      @salah5894 2 месяца назад

      @@CodeWithAarohi OK thank u so so so much 💗💗

  • @amalkuttu8274
    @amalkuttu8274 3 месяца назад

    iam not able to laod the huggingfaceembeddings. it shows this error.
    The specified module could not be found. Error loading "C:\Users\aj441\anaconda3\envs\llmenv\lib\site-packages\torch\lib\fbgemm.dll" or one of its dependencies.

    • @CodeWithAarohi
      @CodeWithAarohi  3 месяца назад

      @@amalkuttu8274 are you running through anaconda or cmd prompt

    • @amalkuttu8274
      @amalkuttu8274 3 месяца назад

      @@CodeWithAarohi anaconda

    • @eashan2405
      @eashan2405 3 месяца назад

      I also faced the same issue. Intsead of using the requirements.txt file, just install them directly using these commands:
      1. conda create -n env_langchain2 python=3.10
      2. conda activate env_langchain2
      3. conda install pytorch torchvision torchaudio cpuonly -c pytorch
      4. pip install transformers
      5. pip install sentence-transformers
      6. pip install langchain langchain_community langchain-huggingface langchain_experimental langchain_chroma langchainhub
      7. pip install streamlit
      8. conda install jupyter
      9. jupyter notebook
      Then test your installation by running this script in Jupyter Notebook:
      import torch
      import transformers
      import sentence_transformers
      import langchain
      print("PyTorch version:", torch.__version__)
      print("Transformers version:", transformers.__version__)
      print("Sentence Transformers version:", sentence_transformers.__version__)
      print("LangChain version:", langchain.__version__)
      It worked for me! Let me know if you still face issues.

    • @amalkuttu8274
      @amalkuttu8274 3 месяца назад

      @@eashan2405 I will surely look that.