Metadata-Version: 2.1
Name: llama-index-embeddings-openai-like
Version: 0.1.0
Summary: llama-index embeddings openai integration
License: MIT
Author: Your Name
Author-email: you@example.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: llama-index-embeddings-openai (>=0.3.0,<0.4.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,
)
```

