Metadata-Version: 2.4
Name: pymyagent
Version: 0.1.3
Summary: Terminal chat assistant for software/coding questions, powered by Gemini with Grok fallback.
Author: Margish Dholariya
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: google-genai>=0.3.0
Requires-Dist: openai>=1.30.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: pycryptodome>=3.20.0

# pymyagent

A terminal chat assistant for software/coding questions, backed by Gemini
(primary) with automatic fallback to Grok if Gemini is unavailable.

## Install

```bash
pip install pymyagent
```

## Usage

```bash
pymyagent --chat
```

You'll be prompted for a PIN before the chat starts:

```
Enter Pin:
```

Once unlocked, ask anything software/coding related. The assistant keeps the
last 2 question/answer pairs as context for follow-up questions. Type `exit`
or `quit` to leave.

## Notes

- This build ships with API keys baked in by the maintainer for convenience.
  Anyone who installs this package can use those keys through the CLI.
- The PIN is a basic local prompt, not a real access-control mechanism —
  the package is open source Python, so the PIN value is readable in the
  source. It exists to avoid accidental use, not to stop a determined user.
