Gemma 2 - Local RAG with Ollama and LangChain

  Рет қаралды 15,306

Sam Witteveen

Sam Witteveen

Күн бұрын

In this video I go through setting up a basic fully local RAG system with Ollama 2 and the new Gemma 2 model.
Code : github.com/samwit/langchain-t...
Interested in building LLM Agents? Fill out the form below
Building LLM Agents Form: drp.li/dIMes
👨‍💻Github:
github.com/samwit/langchain-t... (updated)
github.com/samwit/llm-tutorials
⏱️Time Stamps:
00:00 Intro
00:09 Ollama: Gemma 2 Model
01:35 Demo: RAG running locally

Пікірлер: 52
@relaniumz
@relaniumz Ай бұрын
Thank you for the video. Vote for the next video - Fully Local Multimodal RAG
@toadlguy
@toadlguy Ай бұрын
Just wanted to give a big thumbs up to this, although I haven't yet watched the whole thing 😀. There are so many interesting things you can do with Local RAG and LangChain is very straight forward. I did something similar with Ollama's Llama3 model. Very interested in trying new Llama models that should be available soon.
@mrnakomoto7241
@mrnakomoto7241 Ай бұрын
useful videos. keep on uploading and make aussies proud of you
@selvakumars6487
@selvakumars6487 16 күн бұрын
Awesome work Sam, Thank you
@aa-xn5hc
@aa-xn5hc Ай бұрын
memory, LangChain agents, streaming UI next, please. Thanks for the very useful video!
@flat-line
@flat-line Ай бұрын
LangChain and lamaIndex is really is boilerplate imho , they create more problems then they solve with their over abstraction , can you show vanilla example of how to do rag ?
@SonGoku-pc7jl
@SonGoku-pc7jl 26 күн бұрын
thanks!!
@5h3r10k
@5h3r10k 22 күн бұрын
Amazing tutorial, exactly what I was looking for! Running it with a few text documents, the results are great. Do you have any recommendations for making the QA faster? A different model or libraries?
@nsfnd
@nsfnd Ай бұрын
jezuz with the white background
@Salionca
@Salionca Ай бұрын
Yes. Dark mode in the whole video, please.
@zacboyles1396
@zacboyles1396 Ай бұрын
Dark mode has better contrast for many visually impaired viewers. Dark mode please.
@supercurioTube
@supercurioTube Ай бұрын
Hey Sam! For now Gemma2 is still broken in Ollama, which doesn't include yet the latest llama.cpp fixes required. It's about the tokenizer: and are interpreted as text instead of special tokens, and of course things don't really work as expected as a result. I believe it'll be fixed in the next Ollama update tho - very soon. But it's too early for Gemma 2 evaluations using Ollama at the moment, like many are making on their own or publishing in videos.
@samwitteveenai
@samwitteveenai Ай бұрын
Interesting I tried with and with out the prompt format and both seemed ok. I will try it more with some other ideas this weekend .
@supercurioTube
@supercurioTube Ай бұрын
@@samwitteveenai good to know! Personally for RAG applications I'm always unsure on using a chat template or not. Typically, I'm setting the task and data to look at as system prompt, and then have the standard user/assistant roles following the template. But then, Gemma models don't support the system role at all so... 😅
@samwitteveenai
@samwitteveenai Ай бұрын
For Ollama I am not sure if it operates different when you call it as an API. I need to look into. I saw the Ollama people were in the early access group with me so I figured they would have figured it out, but everything was very last minute for all of us this time round, so they may have gotten quant versions much later.
@supercurioTube
@supercurioTube Ай бұрын
@@samwitteveenai Ollama has chat and generate API endpoints. For the chat endpoint you're expected to pass a list of messages with roles, and that'll be formatted according to the model's chat template. For the generate endpoint, it's just text that'll be passed to the LLM. Which one will answer your questions best tho, is worth looking into 😃
@formigarafa
@formigarafa Ай бұрын
And the generate has an option raw that when you set it to true it does not further apply any template. It takes the input as is. Useful when you want to apply the template by yourself.
@emmanuelauffray8292
@emmanuelauffray8292 Ай бұрын
Great video again. Question though. I can see you are more in favour of langchain but what’s your thoughts on autogen and Teachable agents to do something similar? And in general I suppose your thoughts on autogen and its agentic model?
@samwitteveenai
@samwitteveenai Ай бұрын
AutoGen is cool. I will make some videos about it at some point. I often use LangChain because it is easy and quick. I do like LlamaIndex as well and need to find some time to make vids about it as well.
@themax2go
@themax2go 20 күн бұрын
how does this compare to ms' recently opensourced graphrag? btw there are graphrag w/ ollama implementation tutorials (2 diff versions to do it, 1 is a "hack" / req graphrag python lib change to make it work w/ ollama, other one req lm studio)... with 2 types of querying: "global", which works fine, always; "local", which often / usually fails (w/ various error msgs / for various reasons)
@henkhbit5748
@henkhbit5748 Ай бұрын
Thanks for showing gemma2 and ollama. Would be nice to see with mesop. Maybe in combination with langsmith for debugging?
@samwitteveenai
@samwitteveenai Ай бұрын
Actually I made the Mesopotamia version but the streaming wasn’t working with their Chat UI. I need to look into it more.
@bluelegend5398
@bluelegend5398 10 күн бұрын
Hello, i'm french, sorry for translate, really good job, i have a question, how do you add pfd to txt on the top of your code ? **/*.txt, *.pdf or anything ? thank you
@PestOnYT
@PestOnYT Ай бұрын
I find chroma is not very suitable for local RAG. It sends back telemetry data to their devs. One needs to set anonymized_telemetry=False to keep it quiet. Also, running ollama with some of the tools mentioned behind a firewall/proxy can be a challenge.
@SwapperTheFirst
@SwapperTheFirst Ай бұрын
i've thought it is possible to switch it off completely. There is a big choice of vector or hybrid local databases these days, including postgres and mongo.
@samwitteveenai
@samwitteveenai Ай бұрын
I didn’t know about the telemetry on Chroma will look into. Thanks for letting me know
@toadlguy
@toadlguy Ай бұрын
I wonder if you could strip out the telemetry data with a prompt on the LLM?
@stanTrX
@stanTrX Ай бұрын
Which Vectordb do you suggest?
@PestOnYT
@PestOnYT Ай бұрын
@@stanTrX I was hoping to get a better one suggested. I would prefer to use MariaDB, as I have it as a relational DB anyway on my server. Though, I've never seen any RAG examples with it.
@yazanrisheh5127
@yazanrisheh5127 Ай бұрын
Hey sam can you explain why does your prompt template always seem in a different structure? By that I mean in this case you wrote at the start user then towrads the end you wrote . Does each llm have its own way of writing its own prompt template? If so, what & where do you refer to when you want to do prompt engineering for an llm ur using?
@samwitteveenai
@samwitteveenai Ай бұрын
Great question. Yes every LLM or more specifically every Fine tune of a LLM has a structure that the training data was given to it for the training. When we want to do inference we have to match that structure to to get the best results. In the past if we didn't match the structure we would get garbage out, nowadays the models are getting so good even when we don't match it they can return decent results. The structure normally has some special tokens that tell the model things like was this line said by the user or the assistant, when a section starts or ends. This structure can be very different from model to model especially if made by different companies etc. That why the Llama models have a different prompt template than Gemma etc. You can usually find the prompt templates listed next to models on the HuggingFace in the model card for each model. Hope that helps.
@yazanrisheh5127
@yazanrisheh5127 Ай бұрын
@@samwitteveenai Thank you so much!
@SwapperTheFirst
@SwapperTheFirst Ай бұрын
i see that it is working quite fast on Mac Mini. But what are RAM requirements for model and chroma? Does it require GPU for acceptable performance? You've mentioned that choice of embedder is important. As I understand the same vector dimensionality is not required, since you use embeddings only during embedding process and vector search. But what about "semantic" compatibility between embedder and LLM? I can imagine that embedder could map semantic meaning in its vector space differently from Gemma or LLama. Is it even possible to compare to ensure that you use the best possible embedder for some model?
@samwitteveenai
@samwitteveenai Ай бұрын
You don’t need any matching between the embedding model and the text generation model. They are both handling separate parts of the process. The embeddings generated by the embedder are never given to the TextGen LLM.they are used with the vector store and retrieval. I am using a MacMini with 32GB of Ram so not sure how well it work with low Ram etc.
@toadlguy
@toadlguy Ай бұрын
@@samwitteveenai Yes, one of the neat things about RAG in general is that the interface is "English" (or any language the LLM supports) 😂
@matthewpublikum3114
@matthewpublikum3114 Ай бұрын
Is it possible to run the embedding model on cpu and the localllm on gpu?
@ShravanKumar147
@ShravanKumar147 Ай бұрын
What are the system requirements? Do we need a GPU with certain size of VRAM?
@lukesmith1519
@lukesmith1519 Ай бұрын
I would also like to know this.
@samwitteveenai
@samwitteveenai Ай бұрын
I was using a M2 MacMini with 32gb of RAM. It works on my MBA though its slower there.
@HmzaY
@HmzaY 27 күн бұрын
it doesn't work very well, but it is informative.
@matthewchung284
@matthewchung284 Ай бұрын
Can you share the index code? I do not see it in Github
@samwitteveenai
@samwitteveenai Ай бұрын
Hey thanks for pointing this out. I have just added it
@kungmo
@kungmo 27 күн бұрын
Thanks for sharing your experience. I want to run this model on my computer. So I wrote Modelfile like below: ---------------------------------------------------- FROM gemma-2-9b-it-Q6_K_L.gguf TEMPLATE """ user: {{prompt}} model: """ PARAMETER stop ---------------------------------------------------- And I create model to ollama, so I ran this command ---------------------------------------------------- ollama create ollama create gemma-2-9b-it-Q6_K_L -f ~/gemma-2-9b-it-Q6_K_L/Modelfile ---------------------------------------------------- And I want to run this model, so I ran this command ---------------------------------------------------- ollama run gemma-2-9b-it-Q6_K_L:latest ---------------------------------------------------- Finally, I got an error message.... Error: llama runner process has terminated: signal: aborted (core dumped) How could you run this model on ollama? Thank you.
InternLM - A Strong Agentic Model?
18:44
Sam Witteveen
Рет қаралды 14 М.
Mesop - Google's New UI Maker
14:04
Sam Witteveen
Рет қаралды 76 М.
Mom's Unique Approach to Teaching Kids Hygiene #shorts
00:16
Fabiosa Stories
Рет қаралды 34 МЛН
Amazing weight loss transformation !! 😱😱
00:24
Tibo InShape
Рет қаралды 61 МЛН
Llama3 Full Rag - API with Ollama, LangChain and ChromaDB with Flask API and PDF upload
47:09
host ALL your AI locally
24:20
NetworkChuck
Рет қаралды 917 М.
Supercharge your Python App with RAG and Ollama in Minutes
9:42
Matt Williams
Рет қаралды 32 М.
Why Agent Frameworks Will Fail (and what to use instead)
19:21
Dave Ebbelaar
Рет қаралды 31 М.
Graph RAG: Improving RAG with Knowledge Graphs
15:58
Prompt Engineering
Рет қаралды 40 М.
LangGraph Crash Course with code examples
39:01
Sam Witteveen
Рет қаралды 71 М.
GraphRAG: LLM-Derived Knowledge Graphs for RAG
15:40
Alex Chao
Рет қаралды 98 М.
low battery 🪫
0:10
dednahype
Рет қаралды 1,1 МЛН
Новые iPhone 16 и 16 Pro Max
0:42
Romancev768
Рет қаралды 2,2 МЛН
Это Xiaomi Su7 Max 🤯 #xiaomi #su7max
1:01
Tynalieff Shorts
Рет қаралды 2,1 МЛН