Metadata-Version: 2.1
Name: stubb
Version: 0.1
Summary: Structured LLM outputs and evals
Author: Mark Neumann
License: Apache-2.0
Project-URL: Homepage, https://github.com/deneutoy/stubb
Project-URL: Changelog, https://github.com/deneutoy/stubb/releases
Project-URL: Issues, https://github.com/deneutoy/stubb/issues
Project-URL: CI, https://github.com/deneutoy/stubb/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: pytest; extra == "test"

# stubb

[![PyPI](https://img.shields.io/pypi/v/stubb.svg)](https://pypi.org/project/stubb/)
[![Tests](https://github.com/deneutoy/stubb/actions/workflows/test.yml/badge.svg)](https://github.com/deneutoy/stubb/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/deneutoy/stubb?include_prereleases&label=changelog)](https://github.com/deneutoy/stubb/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/deneutoy/stubb/blob/main/LICENSE)

Structured LLM outputs and evals

## Installation

Install this library using `pip`:
```bash
pip install stubb
```
## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd stubb
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
pytest
```
