Haystack 2.x component to embed strings and Documents using fastembed embedding model
Project description
fastembed-haystack
Table of Contents
Installation
pip install fastembed-haystack
Usage
You can use FastembedTextEmbedder and FastembedDocumentEmbedder by importing as:
from haystack_integrations.components.embedders.fastembed import FastembedTextEmbedder
text = "fastembed is supported by and maintained by Qdrant."
text_embedder = FastembedTextEmbedder(
model="BAAI/bge-small-en-v1.5"
)
text_embedder.warm_up()
embedding = text_embedder.run(text)["embedding"]
from haystack_integrations.components.embedders.fastembed import FastembedDocumentEmbedder
from haystack.dataclasses import Document
embedder = FastembedDocumentEmbedder(
model="BAAI/bge-small-en-v1.5",
)
embedder.warm_up()
doc = Document(content="fastembed is supported by and maintained by Qdrant.", meta={"long_answer": "no",})
result = embedder.run(documents=[doc])
License
fastembed-haystack is distributed under the terms of the Apache-2.0 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fastembed_haystack-0.0.2.tar.gz
(12.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastembed_haystack-0.0.2.tar.gz.
File metadata
- Download URL: fastembed_haystack-0.0.2.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.26.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64c8521d9041ee0eab022032ffa64a991362b4fb3cb8f28a03fa8c57768e3ec6
|
|
| MD5 |
20fe5cfd701af6a92e1d00e012e42ef4
|
|
| BLAKE2b-256 |
1ef88fb9a52811d5c67e54a5133ef9615deff0938ed08a0d19b6c86d65ac4925
|
File details
Details for the file fastembed_haystack-0.0.2-py3-none-any.whl.
File metadata
- Download URL: fastembed_haystack-0.0.2-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.26.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d2da6cba68554656644710ae45b64ee77f86fd6a04e564aff8f4637db62289a
|
|
| MD5 |
f89e1d4653e3467648452131c6b72a54
|
|
| BLAKE2b-256 |
598e34d664b35aa480183bc5bf493fefee59d42b56ce0c54a33359bb5d6de926
|