FastEmbedEmbedder class is used to embed text data into vectors using the FastEmbed.
Usage
qdrant_fastembed.py
Params
Developer Resources
- View Cookbook
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
FastEmbedEmbedder class is used to embed text data into vectors using the FastEmbed.
from agno.knowledge.knowledge import Knowledge
from agno.vectordb.pgvector import PgVector
from agno.knowledge.embedder.fastembed import FastEmbedEmbedder
# Embed sentence in database
embeddings = FastEmbedEmbedder().get_embedding("The quick brown fox jumps over the lazy dog.")
# Print the embeddings and their dimensions
print(f"Embeddings: {embeddings[:5]}")
print(f"Dimensions: {len(embeddings)}")
# Use an embedder in a knowledge base
knowledge = Knowledge(
vector_db=PgVector(
db_url="postgresql+psycopg://ai:ai@localhost:5532/ai",
table_name="qdrant_embeddings",
embedder=FastEmbedEmbedder(),
),
max_results=2,
)
| Parameter | Type | Default | Description |
|---|---|---|---|
dimensions | int | - | The dimensionality of the generated embeddings |
model | str | BAAI/bge-small-en-v1.5 | The name of the qdrant_fastembed model to use |
Was this page helpful?