Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-12 09:36:21

0001 """Episode definitions for testbed workflows.
0002 
0003 Each module defines one workflow's episode: which bus messages are
0004 events, how participants are recognized, and the completion pass that
0005 joins late records (docs/agentic-workflow-view.md). The episode
0006 builder agent arms every definition listed here.
0007 """
0008 
0009 from .prompt_processing import PromptProcessingEpisodes
0010 from .stf_datataking import StfDatatakingEpisodes
0011 
0012 ALL_DEFINITIONS = [PromptProcessingEpisodes, StfDatatakingEpisodes]