From 3b0fe0a5fccd8800fa9e1272b8fc1211e724c4c3 Mon Sep 17 00:00:00 2001 From: ShubhamSaboo Date: Sat, 15 Feb 2025 19:52:29 -0600 Subject: [PATCH] chore: updated deepseek local rag agent code --- rag_tutorials/deepseek_local_rag_agent/deepseek_rag_agent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rag_tutorials/deepseek_local_rag_agent/deepseek_rag_agent.py b/rag_tutorials/deepseek_local_rag_agent/deepseek_rag_agent.py index a630c26..46c8079 100644 --- a/rag_tutorials/deepseek_local_rag_agent/deepseek_rag_agent.py +++ b/rag_tutorials/deepseek_local_rag_agent/deepseek_rag_agent.py @@ -16,7 +16,7 @@ from agno.tools.exa import ExaTools from agno.embedder.ollama import OllamaEmbedder -class OllamaEmbedder(Embeddings): +class OllamaEmbedderr(Embeddings): def __init__(self, model_name="snowflake-arctic-embed"): """ Initialize the OllamaEmbedderr with a specific model. @@ -243,7 +243,7 @@ def create_vector_store(client, texts): vector_store = QdrantVectorStore( client=client, collection_name=COLLECTION_NAME, - embedding=OllamaEmbedder() + embedding=OllamaEmbedderr() ) # Add documents