Metadata-Version: 2.4
Name: prudhvi-ai-helpers
Version: 0.1.0
Summary: Simple OpenAI helper functions
Author: Prudhvi Chinnam
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: openai>=2.0.0

# ai_helpers

Simple helper functions for OpenAI models.

## Installation

pip install ai_helpers

## Usage

```python
from ai_helpers import get_llm_response

response = get_llm_response(
    "Explain Python",
    api_key="YOUR_API_KEY"
)

print(response)
