Metadata-Version: 2.4
Name: vibeiseven
Version: 1.0.0
Summary: AI-powered even number detection using GPT or Gemini
Author: Dean Billedo
Author-email: Dean BIlledo <deanreight@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Dean Billedo
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openai>=1.0.0
Requires-Dist: google-generativeai
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# VibeIsEven

> "Why use math when you have AI?"

VibeIsEven is a satirical, production-quality Python package that determines if a number is even by asking a large language model (LLM) like OpenAI GPT or Gemini, instead of using arithmetic. It’s a parody of using AI for trivial tasks, but is fully functional and well-structured.

## Installation

```bash
pip install vibeiseven
```

## Usage

Set your API key as an environment variable:

- For OpenAI: `OPENAI_API_KEY`
- For Gemini: `GEMINI_API_KEY`

```python
from vibeiseven import vibeiseven, vibeiseven_batch

print(vibeiseven(42))  # True
print(vibeiseven(13, provider='gemini'))  # False
print(vibeiseven_batch([1, 2, 3, 4]))  # [False, True, False, True]
```

## Example

See `vibeiseven/example.py` for a runnable example.

## Development

- Clone the repo
- Install dependencies: `pip install -r requirements.txt`
- Run tests/examples with real API keys

## Contributing

Pull requests are welcome! For major changes, please open an issue first.

## License

MIT
