> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chonkie.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# OpenAIEmbeddings

> Embed text using OpenAI embeddings

Embeddings are handled by the `OpenAIEmbeddings` class, which is a wrapper around the `openai` library.

## Installation

Embeddings require the `openai` library. See the [Installation Guide](/oss/installation) for more information.

## Usage

```python theme={"system"}
from chonkie import OpenAIEmbeddings

embeddings = OpenAIEmbeddings()
```
