Metadata-Version: 2.1
Name: geneplore_api
Version: 3.1.0
Summary: A Python client for the Geneplore API.
Author-email: thegamebegins25 <will@geneplore.com>
Project-URL: Homepage, https://github.com/GeneploreAI/geneplore-libraries
Project-URL: Bug Tracker, https://github.com/GeneploreAI/geneplore-libraries/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# Geneplore AI's API

A Python client for the Geneplore API. See https://docs.geneplore.com for more information.

## Installation

`pip install geneplore_api`

## Usage

```python
from geneplore_api import api_sync as api

api.api_key = "YOUR_API_KEY"

print(api.Chat.GetModels())
```
