Metadata-Version: 2.4
Name: openverse-sdk
Version: 0.0.3
Summary: Openverse SDK for loading and caching text-based game environments.
Author: Bobby Cheng, Kevin Wang, Yunfei Xie
License: MIT
Project-URL: Homepage, https://github.com/openverse-ai/openverse-sdk
Project-URL: Bug Tracker, https://github.com/openverse-ai/openverse-sdk/issues
Project-URL: Documentation, https://docs.openverse.ai (coming soon)
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Games/Entertainment
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: textarena>=0.7.3
Dynamic: license-file

# Openverse SDK (Beta)

The **Openverse SDK** provides a lightweight interface to the Openverse Hub, 
a collection of open, text-based environments designed for evaluation,
research, and experimentation with language models.

This kit allows developers to load and cache text-based game environments directly from the [Openverse Hub](https://open-verse.ai/environments).  
It is currently in **beta**, and documentation is **coming soon**.

---

## Installation

```bash
pip install openverse-sdk
```

## Quick Start

```python
from openverse import make
env = make("TicTacToe-v0")
```

Environments are automatically cached in user's local directory (~/.cache/openverse_envs) for subsequent loads.

## Documentation

Coming soon..
