Metadata-Version: 2.1
Name: openrouter-selector
Version: 0.0.2
Summary: LLM connection using OpenRouter with a single library.
Author: kent
Project-URL: Homepage, https://github.com/KentHirose/openrouter-selector
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: langchain>=0.1

# openrouter-selector

LLM connection using OpenRouter with a single library.

## Installation

To install the `openrouter-selector` library, use pip:

```bash
pip install openrouter-selector
```

## Usage

Here is a basic example of how to use the `openrouter-selector` library:

```python
from openrouter_selector import Selector

llm = Selector(model_name="your_model_name", openai_api_key="your_api_key")

# If the API key is defined in the .env file, you can omit the openai_api_key parameter
llm = Selector(model_name="your_model_name")
```
