Metadata-Version: 2.4
Name: daya_ai
Version: 0.1.0
Summary: AI helper functions
Author: Daya Mathew
License: MIT
Project-URL: Homepage, https://example.com
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openai
Dynamic: license-file

AI Helpers
===========

Small helper library wrapping OpenAI API calls for simple use in apps.

Example usage:

```python
from ai_helpers import get_response

print(get_response("Tell me a joke"))
```

Notes:
- Set `OPENAI_API_KEY` in your environment or `.env` before using functions.
- This package is intentionally small and designed to be imported by web apps.
