Metadata-Version: 2.1
Name: lumino
Version: 0.0.2
Summary: A Python SDK for interacting with the Lumino Labs API
Home-page: https://github.com/luminolabs/lumino-sdk-python
Author: Lumino Labs AI
Author-email: engg@luminolabs.ai
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: aiohttp
Requires-Dist: pydantic
Requires-Dist: pydantic[email]

# Lumino SDK for Python

The Lumino SDK for Python provides a convenient way to interact with the Lumino API for managing large language model (LLM) fine-tuning processes and related resources.

## Features

- User management
- API key management
- Dataset operations
- Fine-tuning job management
- Model information retrieval
- Usage tracking

## Installation

You can install the Lumino SDK using pip:

```bash
pip install lumino
```

## Quick Start

Here's a simple example of how to use the Lumino SDK. More examples under `tests/e2e_test.py`.

```python
import asyncio
from lumino.sdk import LuminoSDK

async def main():
    async with LuminoSDK("your-api-key", "http://localhost:5100/v1") as sdk:
        user = await sdk.user.get_current_user()

asyncio.run(main())
```


## Support

If you encounter any problems or have any questions, please open an issue on the GitHub repository.
