Metadata-Version: 2.4
Name: guidelight
Version: 0.2.0
Summary: A library for developing task-oriented AI systems that integrate with Endeavor.
Home-page: https://github.com/rotationalio/guidelight
Download-URL: https://github.com/rotationalio/guidelight/tarball/v0.2.0
Author: Rotational Labs
Author-email: support@rotational.io
Maintainer: Rotational Labs
Maintainer-email: support@rotational.io
License: BSD 3-Clause
Project-URL: Documentation, https://github.com/rotationalio/guidelight
Project-URL: Download, https://github.com/rotationalio/guidelight/tarball/v0.2.0
Project-URL: Source, https://github.com/rotationalio/guidelight
Project-URL: Tracker, https://github.com/rotationalio/guidelight/issues
Keywords: guidelight,ai,endeavor,api client,tasks,workflows
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10, <4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyJWT==2.10.1
Requires-Dist: python-dotenv==1.1.1
Requires-Dist: requests==2.32.5
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: maintainer
Dynamic: maintainer-email
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Guidelight

**A library for developing task-oriented AI systems that integrate with Endeavor.**

## Getting Started

Install the guidelight library as follows:

```
$ pip install guidelight
```

To connect to Endeavor you will need an API Key; set the following environment variables to enable Endeavor interactions:

```
ENDEAVOR_URL=https://guidelight.dev
ENDEAVOR_CLIENT_ID=
ENDEAVOR_CLIENT_SECRET=
```

You can then connect to Endeavor as follows:

```python
import guidelight as gdl

endeavor = gdl.connect()
print(endeavor.status())
```
