Flows

Ibis Birdbrain’s Bot chooses a Flow to execute based on Messages.

A Flow takes Messages as input and returns Messages as output. The details of a given Flow are specific to itself, running a series of Tasks to accomplish its goal.

Usage

from ibis_birdbrain.flows import Flow, Flows

flow = Flow()
flow
<ibis_birdbrain.flows.Flow at 0x1090f15d0>
Back to top