Metadata-Version: 2.1
Name: python-modelsonic
Version: 0.0.1
Summary: A Python package for working with ModelSonic APIs
Author-email: sirjanpreet.ext@writesonic.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.25.2

# ModelSonic Python Client

This is a Python client for the ModelSonic APIs.

## Installation

Use the package manager [pip](https://pypi.org/en/stable) to install python-modelsonic.

```bash
pip install python-modelsonic
```

## Usage

```python
from modelsonic.client import ModelSonicClient
from modelsonic.enums import ModelSonicModelsEnum

client = ModelSonicClient(base_url='your_base_url', api_key='your_api_key')
```

Please, note that this is a basic README file. Remember to replace `'your_base_url'` and `'your_api_key'` with your actual base URL and API key when using the client. Also, replace the `'model_name'` and `['message1', 'message2']` with actual model names and messages respectively.
