Metadata-Version: 2.1
Name: cliai
Version: 0.2.6
Summary: Command-line interface for OpenAI ChatGPT
License: GPL-3.0-or-later
Author: Baksi
Author-email: myself@baksili.codes
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: click (>=8.1.3,<9.0.0)
Requires-Dist: click-aliases (>=1.0.1,<2.0.0)
Requires-Dist: openai (>=0.27.1,<0.28.0)
Requires-Dist: pygments (>=2.14.0,<3.0.0)
Requires-Dist: questionary (>=1.10.0,<2.0.0)
Description-Content-Type: text/markdown

# CliAI
> CliAI is a Python package that allows you to easily chat with OpenAI's ChatGPT using a command-line interface. With CliAI, you can quickly test and prototype new ideas, chatbots, and language models without writing a single line of code.

## Installation
You can install CliAI via pip:

```
pip install cliai
```

This program requires Python 3.8.
If for some reasons you do not want to mess up the old version system python, I recommend you to use tools like pyenv (e.g. `pyenv global 3.8.11`) to switch between versions.

## Usage
To start a conversation, simply run:

```
cliai chat
```
or alternatively `cliai converse`.

The CLI will guide you to create a configuration.
Alternatively, you can specify an API using `export OPENAI_API_KEY="your-key"` or using the `--api` flag.

## License
CliAI is distributed under the MIT license. See [LICENSE](./LICENSE) for more information.

