L-8 Build a Q&A App with RAG using Gemini Pro and Langchain

  Рет қаралды 4,661

Code With Aarohi

Code With Aarohi

Күн бұрын

Пікірлер: 38
@Random-qw1vl
@Random-qw1vl 27 күн бұрын
u have cleared all the concepts in very simple and easy way
@CodeWithAarohi
@CodeWithAarohi 25 күн бұрын
Glad to hear that
@Sunil-ez1hx
@Sunil-ez1hx Ай бұрын
What an awesome way of explanation
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
Glad you liked it
@itsmeuttu
@itsmeuttu 2 ай бұрын
Best tutor for AI and ML , Thanks alot mame
@CodeWithAarohi
@CodeWithAarohi 2 ай бұрын
Most welcome!
@SHIVAMKUMAR-l4f8r
@SHIVAMKUMAR-l4f8r 27 күн бұрын
Great Explanation. Please Bring More Concepts related to GenAI
@CodeWithAarohi
@CodeWithAarohi 25 күн бұрын
Yes, Sure.
@Umairkhan-j8p
@Umairkhan-j8p 2 ай бұрын
Wao Amazing thanks mam from Pakistan
@CodeWithAarohi
@CodeWithAarohi 2 ай бұрын
Thank you!
@arnavthakur5409
@arnavthakur5409 Ай бұрын
Very nicely explained ma'am
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
Glad you liked it
@AkulSamartha
@AkulSamartha 2 ай бұрын
Super awesome video Asrohi. Can you make one RAG app to chat with any multiple websites please.
@CodeWithAarohi
@CodeWithAarohi 2 ай бұрын
You can provide the link of multiple websites in the urls list.
@AkulSamartha
@AkulSamartha 2 ай бұрын
@@CodeWithAarohi Sorry. My question was, can we add chat history into this.
@howGnt
@howGnt 2 ай бұрын
looking forward to hearing seminar about Lora-pro from U
@CodeWithAarohi
@CodeWithAarohi 2 ай бұрын
Noted!
@omkarsatapathy8209
@omkarsatapathy8209 2 ай бұрын
Hello madam, Omkar, this side. I’m very glad to see your video regarding that RAG model. But for somehow, I realise that it is not hundred percent running locally, we need to use Google API token key. I have use the same with the open AI after few recurrent and after few token processing, it is asking some billing method or credit card details to further. Can we have such a model where we can deploy rag pipeline from scratch hundred percent locally? we can fetch an LLM model from hugging face and download it and storage in our local drive. Create a victor data on our own or just a pie tenor, which am all the text token. That will be much more beneficial for me if we are going for a a business purpose. It is much more beneficial to run it locally with a discreet GPU. Can you please help me guiding on the same building a rag model from scratch using a LLM from hugging face? It can be any LLM of my choice. I’ll be hopeful to see that tutorial and develop myself.. thank you so much for your content. Your content are very beautiful, and it’s very informative.. just teach like a teacher in a classroom, thank you so much again…..❤❤
@sanjaybhan1585
@sanjaybhan1585 2 ай бұрын
How to interact with multiple pdfs, and how much load of data will be handled by llm as a free tier
@noorahmadharal
@noorahmadharal 2 ай бұрын
Thank you for this amazing series of vedios. I have a question that we ca using Chroma DB for saving the embeddings so how can we see these embeddings in chroma db and aslo we have not use any chroma db connection link.
@CodeWithAarohi
@CodeWithAarohi 2 ай бұрын
We have created a Chroma instance with Chroma.from_documents, which stores embeddings in a Chroma vector database. In our code, we haven’t specified a persist_directory, so the embeddings are stored in memory only. To persist the embeddings and be able to reconnect later. You can use this code: vectorstore = Chroma.from_documents( documents=docs, embedding=GoogleGenerativeAIEmbeddings(model="models/embedding-001"), persist_directory="path_to_persist_directory" ) # Save the embeddings to disk vectorstore.persist() To inspect the embeddings stored in Chroma DB, you can use the get_all_embeddings() method query_vector = GoogleGenerativeAIEmbeddings(model="models/embedding-001").embed("your query text") results = vectorstore.similarity_search(query_vector, k=5) for result in results: print(result)
@NehaKothari-iz3hy
@NehaKothari-iz3hy 2 ай бұрын
Plz explain fine tuining the hugging face model on custom data specially text to image generation
@CodeWithAarohi
@CodeWithAarohi 2 ай бұрын
Sure, Soon!
@hendoitechnologies
@hendoitechnologies 2 ай бұрын
full course video about "Claude 3.5 sonnet AI model, API finetune" full course please
@CodeWithAarohi
@CodeWithAarohi 2 ай бұрын
Noted!
@petlovers2103
@petlovers2103 Ай бұрын
thanks for detailed explanation
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
Welcome!
@Umairkhan-j8p
@Umairkhan-j8p 2 ай бұрын
I have followed your video, but the chatbot is still giving answers outside the provided context, even after using your system prompt and making adjustments. For example, if I say "I'm sad, write a joke for me," it still writes a joke. This is the issue I'm encountering. Could you please provide a solution?
@sunnycloud29
@sunnycloud29 2 ай бұрын
how to create the same on a CSV dataframe?
@CodeWithAarohi
@CodeWithAarohi 2 ай бұрын
Just load the data from csv file. Eg: from langchain_community.document_loaders.csv_loader import CSVLoader file_path = ("test.csv") loader = CSVLoader(file_path=file_path) data = loader.load() for record in data[:2]: print(record)
@FahadRamzan-ri4cr
@FahadRamzan-ri4cr 2 ай бұрын
I get this error while I run last cell of that basic rag --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Cell In[13], line 1 ----> 1 response = rag_chain.invoke({"input": "what is new in YOLOv9?"}) 2 print(response["answer"]) AttributeError: 'int' object has no attribute 'name'
@shobishobi1704
@shobishobi1704 15 күн бұрын
I am not able to install chroma facing issue
@CodeWithAarohi
@CodeWithAarohi 14 күн бұрын
Please mention the issue you are facing.
@AbhishekSingh-od8sy
@AbhishekSingh-od8sy Ай бұрын
is it paid maam ??
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
NO
@clarkpaul3489
@clarkpaul3489 Ай бұрын
mam can you please complete the generative ai playlist
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
Yes, Sorry for the delay. Just busy with few ongoing projects.
SAM 2 | Segment Anything Model 2
32:13
Code With Aarohi
Рет қаралды 4,9 М.
🕊️Valera🕊️
00:34
DO$HIK
Рет қаралды 9 МЛН
Cool Parenting Gadget Against Mosquitos! 🦟👶 #gen
00:21
TheSoul Music Family
Рет қаралды 30 МЛН
How to build Multimodal Retrieval-Augmented Generation (RAG) with Gemini
34:22
Google for Developers
Рет қаралды 65 М.
Reliable, fully local RAG agents with LLaMA3.2-3b
31:04
LangChain
Рет қаралды 44 М.
L-3 LangChain Explained | Building Generative AI Apps from Scratch
21:16
Code With Aarohi
Рет қаралды 2,4 М.
Master RAG on Vertex AI with Vector Search and Gemini Pro
31:07
Janakiram MSV
Рет қаралды 7 М.
LangGraph 101: it's better than LangChain
32:26
James Briggs
Рет қаралды 79 М.
YOLO11 Custom Object Detection
27:09
Code With Aarohi
Рет қаралды 3,3 М.
L-7 RAG (Retrieval Augmented Generation)
27:54
Code With Aarohi
Рет қаралды 2,9 М.
Google CEO Sundar Pichai and the Future of AI | The Circuit
24:02
Bloomberg Originals
Рет қаралды 3,8 МЛН
Chat with SQL and Tabular Databases using LLM Agents (DON'T USE RAG!)
58:54