Metadata-Version: 2.1
Name: question-generator
Version: 0.1.2
Summary: A CLI tool for generating prompts from Notion templates
Home-page: https://github.com/devfactory/prompt-generator
Author: David Schwartz
Author-email: david.schwartz@devfactory.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0.0
Requires-Dist: aiohttp>=3.8.0
Requires-Dist: python-dotenv>=0.19.0

# Prompt Generator

A Python package for generating structured prompts from markdown templates.

## Installation

```bash
pip install prompt-generator
```

## Usage

```python
from prompt_generator import PromptGenerator

# Initialize the generator
generator = PromptGenerator()

# Generate a prompt from a markdown template
prompt = await generator.generate_prompt("templates/background.md", "prompts")
```

## Features

- Generate structured prompts from markdown templates
- Support for examples and context in templates
- AWS Bedrock integration for AI-powered prompt generation
- Async/await support for efficient processing

## License

This project is licensed under the MIT License - see the LICENSE file for details.
