Metadata-Version: 2.1
Name: geniverse
Version: 0.1.6
Summary: Easy library for guiding generative AI models. Find your latent!
Home-page: https://github.com/thegeniverse/geniverse
Author: Geniverse
Author-email: vipermu97@gmail.com
License: UNKNOWN
Project-URL: Docs, https://github.com/thegeniverse/geniverse/docs
Platform: UNKNOWN
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

# The Geniverse API
Open source library to access and utilize generative AI models. 

## Install
```bash
pip install geniverse
```

## Usage
With this example we can generate `"a genierative universe"` using `VQGAN`. The result is a list of PIL images. Docs will be released soon :)
```python
from geniverse.models import TamingDecoder
taming_decoder = TamingDecoder()
image_list = taming_decoder.generate_from_prompt("a generative universe")
```

For now you can generate images from text prompts, interpolate and create infinite zooms with your results. More examples soon :)

## Models

So far we have adapted to our pipeline the following models:
- VQGAN
- Aphantasia
- Mini-Dalle



