Metadata-Version: 2.2
Name: agi_test
Version: 0.1.0
Summary: A Python client library for interacting with the General Reasoning platform
Author-email: General Reasoning Team <hello@gr.inc>
License: MIT
Project-URL: Homepage, https://github.com/GeneralReasoning/agi_test
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31.0

# AGI Test Client

A Python client library for interacting with the General Reasoning platform API.

## Installation

You can install the package using pip:

```bash
pip install agi_test
```

## Making API Calls

```python
import agi

client = agi.Client(api_key=YOUR_API_KEY)

# Example data
client.get_data("math-word_problems")
```
