Metadata-Version: 2.4
Name: isoprompt
Version: 1.0.1
Summary: AI-powered prompt generation and processing tool
Home-page: https://github.com/thehackersplaybook/isoprompt
Author: Aditya Patange (AdiPat)
Author-email: IsoPrompt Team <team@isoprompt.ai>
License-Expression: MIT
Project-URL: Homepage, https://github.com/thehackersplaybook/isoprompt
Project-URL: Documentation, https://isoprompt.readthedocs.io
Project-URL: Repository, https://github.com/thehackersplaybook/isoprompt.git
Project-URL: Issues, https://github.com/thehackersplaybook/isoprompt/issues
Keywords: ai,prompt,openai,gpt,nlp,cli
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
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
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openai>=1.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dotenv>=1.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: isort>=5.12.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Requires-Dist: pre-commit>=3.0.0; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# IsoPrompt

IsoPrompt [`isoprompt`] offers prompt optimization via a simple, user-friendly CLI and programmable API SDK.

[![PyPI version](https://img.shields.io/pypi/v/isoprompt.svg)](https://pypi.org/project/isoprompt/)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/release/python-380/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Features

- 🎯 **Optimizes prompts** for better results.
- 🔧 **Domain-specific tuning** for various fields.
- 🛠 **Multiple optimization modes** for different use cases.
- 📚 **Rich documentation** and examples.
- 🧪 **Test-driven development** with high coverage.
- 🔒 **Type-safe** with full type hints.

## Quick Start

```python
from isoprompt import optimize_prompt

prompt = "Write a blog post about AI"
optimized = optimize_prompt(prompt)
print(optimized)
```

Or via CLI:

```bash
isoprompt --prompt "Generate a fitness plan for students."
```

## Installation

```bash
pip install isoprompt
```

## Documentation

- [Getting Started](https://github.com/thehackersplaybook/isoprompt/blob/main/docs/GETTING_STARTED.md).
- [API Reference](https://github.com/thehackersplaybook/isoprompt/blob/main/docs/API_REFERENCE.md).
- [Examples](https://github.com/thehackersplaybook/isoprompt/blob/main/docs/EXAMPLES.md).

## Changelog

### v1.0.1

- Initial public release on PyPI.
- Renamed package to isoprompt.
- Added comprehensive documentation.
- Added type hints and py.typed marker.

## License

MIT License - see [LICENSE](https://github.com/thehackersplaybook/isoprompt/blob/main/LICENSE) for details.
