Metadata-Version: 2.1
Name: cocoai
Version: 0.1.4
Summary: Instant answers to your CLI questions in the CLI of your choice.
Home-page: https://github.com/dvlpjrs/coco
License: MIT
Author: dvlpjrs
Author-email: jrs@dvlpjrs.me
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
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: appdirs (>=1.4.4,<2.0.0)
Requires-Dist: click (>=8.1.7,<9.0.0)
Requires-Dist: inquirerpy (>=0.3.4,<0.4.0)
Requires-Dist: openai (>=0.28.1,<0.29.0)
Requires-Dist: pyperclip (>=1.8.2,<2.0.0)
Project-URL: Repository, https://github.com/dvlpjrs/coco
Description-Content-Type: text/markdown

# Coco - Your CLI Assistant

Instant answers to your CLI questions in the CLI of your choice.

## Installation

To install Coco CLI, make sure you have Python 3.x installed. Then, use pip to install it:

```bash
pip install cocoai
```

## Usage

### Ask anything

Ask Coco anything, and it will fetch the right CLI command for you:

```bash
coco "How do I list files in a directory?"
```

You can even skip the quotes:

```bash
coco How do I list files in a directory?
```

Or simply:

```bash
coco -a
```

# Resetting Your Token

To set or reset your OpenAI Token, use the following command:

```bash
coco -t <Your OpenAI Token>
```

