Metadata-Version: 2.4
Name: openagideepthink
Version: 0.1.0
Summary: A simple package for deep thinking tasks using a large reasoning language model.
Author: AG
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
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# openagideepthink

A simple Python package to interface with a large reasoning language model (LLM) for deep thinking tasks.

## Installation

```bash
pip install openagideepthink
```

## Usage

```python
from openagideepthink import AGDeepThink

model = AGDeepThink()
response = model.ask("hi")
print(response)
```
