Metadata-Version: 2.4
Name: llama-index-embeddings-openai-like
Version: 0.3.1
Summary: llama-index embeddings openai integration
Author-email: Your Name <you@example.com>
License-Expression: MIT
License-File: LICENSE
Requires-Python: <4.0,>=3.10
Requires-Dist: llama-index-embeddings-openai<0.7,>=0.6.0
Description-Content-Type: text/markdown

# OpenAILike Embeddings

This integration allows you to use OpenAI-like embeddings APIs with LlamaIndex.

## Installation

```bash
pip install llama-index-embeddings-openai-like
```

## Usage

```python
from llama_index.embeddings.openai_like import OpenAILikeEmbedding

embedding = OpenAILikeEmbedding(
    model_name="my-model-name",
    api_key="fake",
    api_base="http://localhost:1234/v1",
    embed_batch_size=10,
)
```
