We're working on fleshing out this demo, but we have an example to get started with.
You can play around with this example by running the burr command after running pip install. Then navigate to examples/chatbot in your browser (it will open up).
pip install burr[start] burr
You'll see the telemetry on the right and the chatbot on the left.
The general approach for a read/write app (say, a chatbot) is as follows:
This way you can keep the frontend simple (just render burr's state), and keep the backend simple (delegate loading/persistence/logic to burr). Then you can view in telemetry.
To see the code, you'll want to open the following:
You can see that the server file defines a rounter which gets imported by the main server file -- this allows us to reuse this in the demo. We'll be updating this with a self-contained copy/paste example shortly, stay tuned!