rosgpt4all.qdrant_embedder
Classes
Qdrant JSON embedding interface. |
Module Contents
- class rosgpt4all.qdrant_embedder.QdrantEmbedder(model: str = None, **kwargs: Any)
Bases:
json_embedder.JsonEmbedder
Qdrant JSON embedding interface. The __call__ function expects a string with a JSON dict containing the following attributes:
collection: to be used collection name documents: list with document strings metadatas: list of metadata dictionaries ids: optional list of id strings, if not provided Qdrant will create them
- __call__(j: str) None