> For the complete documentation index, see [llms.txt](https://genaistack.aiplanet.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://genaistack.aiplanet.com/components/embedding/quickstart.md).

# Quickstart

There is a default embedding component you can use to quickstart. We use **HuggingFaceEmbeddings** by default so that we can run the embedding operation locally easily to give our users a good headstart.

```
from genai_stack.embedding.utils import get_default_embeddings

embeddings = get_default_embeddings()
embeddings.embed_text("Your text to embed")
```
