Metadata-Version: 2.1
Name: ezclai
Version: 0.3.1
Summary: Command Line AI- this tool lets you call ChatGPT from a CLI
License: Proprietary
Author: apockill
Author-email: apocthiel@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary 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: PyAutoGUI (>=0.9.53,<0.10.0)
Requires-Dist: PyWinCtl (>=0.0.43,<0.0.44)
Requires-Dist: clipboard (>=0.0.4,<0.0.5)
Requires-Dist: openai (>=0.27.0,<0.28.0)
Requires-Dist: pytesseract (>=0.3.10,<0.4.0)
Description-Content-Type: text/markdown

# ezclai

Command Line AI- this tool lets you call ChatGPT from a CLI.

I'm designing this to be used in conjunction with a fork of [shin][shin], which will allow you
to call `ezclai` from any textbox in your computer. Finally, ChatGPT everywhere!

The long-term vision for this project is to add support for extracting context. For example, it would
read the current text on a window and be able to add to it, or answer questions about it.

---

[![PyPI version](https://badge.fury.io/py/ezclai.svg)](http://badge.fury.io/py/ezclai)
[![Test Status](https://github.com/apockill/ezclai/workflows/Test/badge.svg?branch=main)](https://github.com/apockill/ezclai/actions?query=workflow%3ATest)
[![Lint Status](https://github.com/apockill/ezclai/workflows/Lint/badge.svg?branch=main)](https://github.com/apockill/ezclai/actions?query=workflow%3ALint)
[![codecov](https://codecov.io/gh/apockill/ezclai/branch/main/graph/badge.svg)](https://codecov.io/gh/apockill/ezclai)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://timothycrosley.github.io/isort/)

---

[Read Latest Documentation](https://apockill.github.io/ezclai/) - [Browse GitHub Code Repository](https://github.com/apockill/ezclai/)

---

## Installation

1. The recommended installation method is to use `pipx`, via
   ```bash
   pipx install ezclai
   ```
   Optionally, install `tesseract` so that `ezclai` can read the screen context and send that along with requests:
   ```bash
   sudo apt install tesseract-ocr scrot python3-tk python3-dev
   ```
1. Then go to [OpenAI] and create an API Key. Once it's generated, add the following to
   your `~/.profile`:

   ```bash
   export OPENAI_API_TOKEN=<paste here>
   ```

1. The best way to use this tool is in conjunction with the tool [shin][shin], which allows you
   to run arbitrary bash commands in any textbox in a linux computer, using ibus. To use
   that, install 'shin' via the fork above, then configure
   it in your `~/.profile` to call `ezclai` by default:
   ```bash
   export SHIN_DEFAULT_COMMAND="ezclai"
   ```
1. Log out then log back in for the changes to take effect!

[OpenAI]: https://platform.openai.com/account/api-keys

## Usage

Invoke the assistant with the format `ezclai <your prompt>`. For example:

```
ezclai Write an email saying I'll be late to work because I'm working on commandline AIs
```

## Development

### Installing python dependencies

```shell
poetry install
```

### Running Tests

```shell
pytest .
```

### Formatting Code

```shell
bash .github/format.sh
```

### Linting

```shell
bash .github/check_lint.sh
```

[shin]: https://github.com/apockill/shin/tree/feature/arbitrary-commands

