Metadata-Version: 2.1
Name: chat-companion
Version: 0.1.1
Summary: A chat gpt command line client with extra features"
License: Apache 2.0
Author: daniel-davee
Author-email: daniel.v.davee@gmail.com
Requires-Python: >=3.10.9,<3.11.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Requires-Dist: inquirerpy (>=0.3.4,<0.4.0)
Requires-Dist: openai (>=0.26.5,<0.27.0)
Requires-Dist: plac (>=1.3.5,<2.0.0)
Requires-Dist: pysimplelog (>=4.0.0,<5.0.0)
Description-Content-Type: text/markdown

# CLI Companion

CLI Companion is a command line tool that you can use to ask questions and get responses back from a virtual companion. You can also review previous questions and responses.

## Installation

You can install CLI Companion using [PyInstaller](https://www.pyinstaller.org/).

To install using PyInstaller, first clone this repository. Then, in the repository directory, run the following command:

```
pyinstaller -D companion.py
```

This will create a standalone executable in the `dist` directory.

## Usage

### Talk

To ask a question, use the `talk` subcommand. For example:

```
companion talk "What is your name?"
```

### Review

To review previous questions and responses, use the `review` subcommand. This will bring up a list of previous questions. You can then select a question to view the response.
