Skip to content

Commit

Permalink
docs WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahbenizzy committed Feb 8, 2024
1 parent 177d668 commit cc19110
Show file tree
Hide file tree
Showing 36 changed files with 369 additions and 8 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: documentation

on: [push]

permissions:
contents: write

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Install dependencies
run: |
pip install -e ".[documentation]"
- name: Sphinx build
run: |
sphinx-build docs _build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
force_orphan: true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,5 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
#
_build
19 changes: 11 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,6 @@ Let us take a look at of how one might design a gpt-like chatbot. It:
6. If this succeeds, we present the response to the user
7. Await a new prompt, GOTO (1)

Simple, right? Until you start tracking how state flows through:
- The prompt is referenced by multiple future steps
- The chat history is referred to at multiple points, and appended to (at (1) and (5))
- The decision on mode is opaque, and referred to both by (4), to know what model to query and by (6) to know how to render the response
- You will likely want to add more capabilities, more retries, etc...

Chatbots, while simple at first glance, turn into something of a beast when you want to bring them to production and understand exactly *why*
they make the decisions they do.

We can model this as a _State Machine_, using the following two concepts:
1. `Actions` -- a function that has two jobs. These form Nodes.
Expand All @@ -36,6 +28,17 @@ We can model this as a _State Machine_, using the following two concepts:

The set of these together form what we will call a `Application` (effectively) a graph.

Why do we need all this abstraction?

This is all simple until you start tracking how state flows through:
- The prompt is referenced by multiple future steps
- The chat history is referred to at multiple points, and appended to (at (1) and (5))
- The decision on mode is opaque, and referred to both by (4), to know what model to query and by (6) to know how to render the response
- You will likely want to add more capabilities, more retries, etc...

Chatbots, while simple at first glance, turn into something of a beast when you want to bring them to production and understand exactly *why*
they make the decisions they do.

For those into the CS details, this is reverse to how a state machine is usually represented
(edges are normally actions and nodes are normally state). We've found this the easiest way to
express computation as simple python functions.
Expand Down
6 changes: 6 additions & 0 deletions burr/core/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ def name(self) -> str:

class Result(Action):
def __init__(self, fields: list[str]):
"""Represents a result action. This is purely a convenience class to
pull data from state and give it out to the result. It does nothing to
the state itself.
:param fields: Fields to pull from the state
"""
super(Result, self).__init__()
self._fields = fields

Expand Down
20 changes: 20 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
BUILDDIR = _build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
11 changes: 11 additions & 0 deletions docs/README-internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Internal README for docs

This documentation aims to follow the [diataxis](diataxis.fr) approach to documentation. This outlines:
1. Tutorials [getting_started](./getting_started)
2. How-to guides (examples in the repo)
3. References [reference](./reference)
4. Explanation [concepts](./concepts)

TODO:
- [ ] fill in all docs todos
- [ ] Add examples for Hamilton integration, streamlit integration
3 changes: 3 additions & 0 deletions docs/concepts/actions.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
====================
Actions
====================
12 changes: 12 additions & 0 deletions docs/concepts/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
====================
Concepts
====================

Overview of the concepts -- read these to get a mental model for how Burr works.

.. toctree::
state-machine
state
transitions
actions
more
8 changes: 8 additions & 0 deletions docs/concepts/more.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
====================
More (TODO)
====================

- Execution
- Error handling
- Lifecycle methods
- Async
3 changes: 3 additions & 0 deletions docs/concepts/state-machine.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
====================
State Machine
====================
3 changes: 3 additions & 0 deletions docs/concepts/state.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
====================
State
====================
3 changes: 3 additions & 0 deletions docs/concepts/transitions.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
====================
Transitions
====================
41 changes: 41 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "Burr"
copyright = "2024, Elijah ben Izzy, Stefan Krawczyk"
author = "Elijah ben Izzy, Stefan Krawczyk"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = ["sphinx.ext.autodoc", "sphinx.ext.autosummary", "myst_parser", "sphinx_sitemap"]

templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

html_theme = "furo"
html_static_path = ["_static"]

html_title = "Burr"
html_theme_options = {
"source_repository": "https://github.com/dagworks-inc/burr",
"source_branch": "main",
"source_directory": "docs/",
"light_css_variables": {
"color-announcement-background": "#ffba00",
"color-announcement-text": "#091E42",
},
"dark_css_variables": {
"color-announcement-background": "#ffba00",
"color-announcement-text": "#091E42",
},
}

html_baseurl = "https://burr.dagworks.io/en/latest/" # TODO -- update this

exclude_patterns = ["README-internal.md"]
5 changes: 5 additions & 0 deletions docs/examples/chatbot.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
====================
GPT-like chatbot
====================

TODO -- link to github
13 changes: 13 additions & 0 deletions docs/examples/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
====================
Getting Started
====================

Welcome to Burr's documentation!

The following section of the docs will walk you through Burr and how to integrate into your project:

.. toctree::
simple
chatbot
ml_training
simulation
5 changes: 5 additions & 0 deletions docs/examples/ml_training.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
====================
ML Model Training
====================

TODO -- link to github
7 changes: 7 additions & 0 deletions docs/examples/simple.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
====================
Simple examples
====================

TODO -- link to github
- cowsay
- counter
5 changes: 5 additions & 0 deletions docs/examples/simulation.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
====================
Simulation
====================

TODO -- link to github
13 changes: 13 additions & 0 deletions docs/getting_started/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
====================
Getting Started
====================

Welcome to Burr's documentation!

The following section of the docs will walk you through Burr and how to integrate into your project:

.. toctree::
why-burr
install
simple-example
up-next
24 changes: 24 additions & 0 deletions docs/getting_started/install.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
====================
Getting Started
====================

Burr requires almost no dependencies. Every "extra"/"plugin" is an additional install target. Note, if you're using zsh,
you'll need to add quotes around the install target, like `pip install "burr[visualization]"`.

.. code-block:: bash
pip install burr
To get visualization capabilities, you can install the `burr[visualization]` extra:

.. code-block:: bash
pip install burr[visualization]
And to visualize your state machines on streamlit, you can install the `burr[streamlit]` extra:

.. code-block:: bash
pip install burr[streamlit]
Don't worry, you can always install these extras later.
4 changes: 4 additions & 0 deletions docs/getting_started/simple-example.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
=================
Simple Example
=================
TODO -- cowsay
4 changes: 4 additions & 0 deletions docs/getting_started/up-next.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
=================
Next Steps
=================
TODO -- cowsay
5 changes: 5 additions & 0 deletions docs/getting_started/why-burr.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
=================
Why Burr
=================

TODO -- cowsay
27 changes: 27 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.. Burr documentation master file, created by
sphinx-quickstart on Thu Feb 8 10:04:25 2024.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
.. include:: main.md

Welcome to Burr's documentation!
================================

.. toctree::
:maxdepth: 2
:caption: User guide:

getting_started/index
concepts/index

.. toctree::
:maxdepth: 2
:caption: Examples:

examples/index
.. toctree::
:maxdepth: 2
:caption: Reference:

reference/index
1 change: 1 addition & 0 deletions docs/main.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Welcome to Burr!
35 changes: 35 additions & 0 deletions docs/make.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
@ECHO OFF

pushd %~dp0

REM Command file for Sphinx documentation

if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build

%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.https://www.sphinx-doc.org/
exit /b 1
)

if "%1" == "" goto help

%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
goto end

:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%

:end
popd
8 changes: 8 additions & 0 deletions docs/reference/actions.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
=================
Action API
=================

Use the action API to specify actions on your workflow.

.. autoclass:: burr.core.action.Action
:special-members: __init__
3 changes: 3 additions & 0 deletions docs/reference/application.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
=================
Application
=================
3 changes: 3 additions & 0 deletions docs/reference/conditions.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
=================
Conditions
=================
11 changes: 11 additions & 0 deletions docs/reference/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
========================
Reference Documentation
========================

.. toctree::
application
actions
state
conditions
lifecycle
integrations/index
7 changes: 7 additions & 0 deletions docs/reference/integrations/hamilton.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
=======================
Hamilton
=======================

Full Hamilton integration. Touch-points are custom Hamilton actions. This is installed by default.

.. automodule:: burr.integrations.hamilton
Loading

0 comments on commit cc19110

Please sign in to comment.