Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 315 Bytes

File metadata and controls

14 lines (12 loc) · 315 Bytes

Step 2 — State

관련 Step: ../../steps/step2.md

stateDiagram-v2
    [*] --> Idle
    Idle --> Executing: execute()
    Executing --> Streaming
    Streaming --> Completed: final artifact
    Executing --> Cancelled: cancel()
    Cancelled --> [*]
    Completed --> [*]
Loading