Metadata-Version: 2.1
Name: burr
Version: 0.2.0
Summary: A state machine for data projects
Author-email: Elijah ben Izzy <elijah@dagworks.io>, Stefan Krawczyk <stefan@dagworks.io>
Maintainer-email: Elijah ben Izzy <elijah@dagworks.io>, Stefan Krawczyk <stefan@dagworks.io>
Project-URL: Homepage, https://github.com/dagworks-inc/burr
Project-URL: Documentation, https://github.com/dagworks-inc/burr
Project-URL: Repository, https://github.com/dagworks-inc/burr
Project-URL: Bug Tracker, https://github.com/dagworks-inc/burr
Keywords: mlops,data,state-machine,llmops
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: sf-hamilton>=1.47.0
Provides-Extra: streamlit
Requires-Dist: streamlit; extra == "streamlit"
Requires-Dist: graphviz; extra == "streamlit"
Requires-Dist: matplotlib; extra == "streamlit"
Provides-Extra: graphviz
Requires-Dist: graphviz; extra == "graphviz"
Provides-Extra: tests
Requires-Dist: pytest; extra == "tests"
Requires-Dist: pytest-asyncio; extra == "tests"
Provides-Extra: documentation
Requires-Dist: sphinx; extra == "documentation"
Requires-Dist: sphinx-autobuild; extra == "documentation"
Requires-Dist: myst-parser; extra == "documentation"
Requires-Dist: furo; extra == "documentation"
Requires-Dist: sphinx-sitemap; extra == "documentation"
Requires-Dist: sphinx-toolbox; extra == "documentation"
Provides-Extra: tracking-client
Requires-Dist: pydantic; extra == "tracking-client"

# Burr

## What is Burr?

Burr is a state machine for data/AI projects. You can (and should!) use it for anything where managing state can be hard. Hint: managing state
is always hard!

Link to [documentation](https://studious-spork-n8kznlw.pages.github.io/).

## What can you do with Burr?

Burr can be used for a variety of applications. Burr can build a state machine to orchestrate, express, and track:

1. [A gpt-like chatbot](examples/gpt)
2. [A machine learning pipeline](examples/ml_training)
3. [A trading simulation](examples/simulation)

And a lot more!

Using hooks and other integrations you can (a) integrate with any of your favorite vendors (LLM observability, storage, etc...), and
(b) build custom actions that delegate to your favorite libraries.

Bur will *not* tell you how to build your models, how to query APIs, or how to manage your data. It will help you tie all these together
in a way that scales with your needs and makes following the logic of your system easy. Burr comes out of the box with a host of integrations
including tooling to build a UI in streamlit and watch your state machine execute.

![Burr at work](./chatbot.gif)

## Why the name Burr?

Burr is named after Aaron Burr, founding father, third VP of the United States, and murderer/arch-nemesis of Alexander Hamilton.
We imagine a world in which Burr and Hamilton lived in harmony and saw through their differences. We originally
built Burr as a _harness_ to handle state between executions of Hamilton DAGs,
but realized that it has a wide array of applications and decided to release it.


# Getting Started

To get started, install from `pypi`, using your favorite package manager:

```
pip install burr
```

Next, see the documentation for [getting started](https://studious-spork-n8kznlw.pages.github.io/getting_started/simple-example.html), and follow the example.
Then read through some of the concepts and write your own application!
