Metadata-Version: 2.4
Name: ai_helper_lib
Version: 0.1.0
Summary: A helper library for interacting with Anti Gravity AI
Author: Student Name
Author-email: student@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: google-generativeai
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# AI Helper Library

This is a custom Python library designed to interact with the Anti Gravity AI tool.

## Installation

```bash
pip install ai_helper_lib
```

## Usage

```python
from ai_helper_lib import ask_antigravity, summarize_text

response = ask_antigravity("What is the future of AI?")
print(response)

summary = summarize_text("This is a very long text that needs to be shortened for better readability.")
print(summary)
```

## Features

- **ask_antigravity**: Sends a prompt to the AI and gets a response.
- **summarize_text**: Truncates long text.
- **format_text**: Cleans up whitespace.
