Coder Social home page Coder Social logo

Comments (2)

wulifu2hao avatar wulifu2hao commented on July 30, 2024 1

I am able to reproduce your issue. However changing "Qdrant.from_texts(" in your step 1 To "QdrantVectorStore.from_texts" fix the issue for me


import os
from langchain_huggingface import HuggingFaceEmbeddings
from langchain_qdrant import FastEmbedSparse, RetrievalMode, QdrantVectorStore

embeddings = HuggingFaceEmbeddings(model_name='OrdalieTech/Solon-embeddings-large-0.1')

sparse_embeddings = FastEmbedSparse(model_name="Qdrant/bm25")

texts = ["the capital of france is paris", "the capital of germany is berlin", "the capital of italy is rome"]
vectordb = QdrantVectorStore.from_texts(
    # vectordb = Qdrant.from_texts(
    texts=texts,
    embedding=embeddings,
    sparse_embedding=sparse_embeddings,
    sparse_vector_name="sparse-vector",
    path=os.path.join(os.getcwd(), 'manuscrits_biblissima_vectordb'),
    collection_name="manuscrits_biblissima",
    retrieval_mode=RetrievalMode.HYBRID,
)
print(vectordb)
        
qdrant = QdrantVectorStore.from_existing_collection(
    collection_name="manuscrits_biblissima",
    path=os.path.join(os.getcwd(), 'manuscrits_biblissima_vectordb'),
    retrieval_mode=RetrievalMode.HYBRID,
    embedding=embeddings, 
    sparse_embedding=sparse_embeddings,
    sparse_vector_name="sparse-vector"
    )
res = qdrant.search("where is the capital of france",search_type="similarity", k=1)
print(res)

from langchain.

EtienneFerrandi avatar EtienneFerrandi commented on July 30, 2024

yes, it works for me also when I change Qdrant.from_texts by QdrantVectorStore.from_texts.
Thanks !

from langchain.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.