Metadata-Version: 2.4
Name: supereasyai
Version: 1.0.2
Summary: A super easy AI LLM library.
Author: Dominic Coletti
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/DominicDJC/supereasyai
Project-URL: Changelog, https://github.com/DominicDJC/supereasyai/releases
Project-URL: Issues, https://github.com/DominicDJC/supereasyai/issues
Project-URL: CI, https://github.com/DominicDJC/supereasyai/actions
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: doms-json
Requires-Dist: openai
Requires-Dist: groq
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: python-dotenv; extra == "test"
Dynamic: license-file

# supereasyai

[![PyPI](https://img.shields.io/pypi/v/supereasyai.svg)](https://pypi.org/project/supereasyai/)
[![Tests](https://github.com/DominicDJC/supereasyai/actions/workflows/test.yml/badge.svg)](https://github.com/DominicDJC/supereasyai/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/DominicDJC/supereasyai?include_prereleases&label=changelog)](https://github.com/DominicDJC/supereasyai/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/DominicDJC/supereasyai/blob/main/LICENSE)

A super easy AI LLM library.

## Installation

Install this library using `pip`:
```bash
pip install supereasyai
```
## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd supereasyai
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
python -m pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
