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.3.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.3.tar.gz.
File metadata
- Download URL: fastembed_haystack-0.0.3.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 |
04f1930d81ecd577b0f5995b67277a9db8cbe42c11e1b790fc183414fd251d6e
|
|
| MD5 |
c74f248075ca03ce40cda1e9d67a01cd
|
|
| BLAKE2b-256 |
c611c35dee3fc9aa85623420c8fd335cad93ab3d12a3dce3137270c6107486a3
|
File details
Details for the file fastembed_haystack-0.0.3-py3-none-any.whl.
File metadata
- Download URL: fastembed_haystack-0.0.3-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.26.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4233c67723f967e30d590b054fc4a149b60ad07cc5b79a6d1e3612756e7a4746
|
|
| MD5 |
43b6a1136f655c3b44fc09a5af3b5199
|
|
| BLAKE2b-256 |
48adde01a352a6dab4d289c7366c48a5d2e11cc78620371d0e23b186eebbd033
|