Metadata-Version: 2.1
Name: paichat
Version: 1.0.1
Summary: A Terminal experience
License: MIT
Author: Kumar Anirudha
Author-email: mail@anirudha.dev
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: colorama (>=0.4.6,<0.5.0)
Requires-Dist: openai (>=0.26.4,<0.27.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: rich (>=13.2.0,<14.0.0)
Requires-Dist: shellingham (>=1.5.0.post1,<2.0.0)
Requires-Dist: typer (>=0.7.0,<0.8.0)
Description-Content-Type: text/markdown

# Python Open AI CLI Client [Un-official]

A Terminal Tool in Python

## Prerequisites
- `pipx`. If you don't have pipx installed, you can install like this:
  - `python3 -m pip install --user pipx`
  - `python3 -m pipx ensurepath`
- You'll also need to have your own OpenAi apikey:
  - Go to https://beta.openai.com/
  - Select you profile menu and go to Manage API Keys
  - Select + Create new secret key
  - Copy generated key

## Install:
`pipx install paichat`

## Usage:
`paichat --help`

```sh
 Usage: paichat [OPTIONS]

╭─ Options ───────────────────────────────────────╮
│ --help          Show this message and exit.     │
╰─────────────────────────────────────────────────╯
```

## Contribute:

### Dev:

Start a virtualenv using poetry: `poetry shell`

If `poetry shell` does not activate the virtualenv, then use this:
`source $(poetry env info --path)/bin/activate`
When you're done, exit virtualenv shell: `deactivate`

