| 3 | from typing import Any, Dict |
| 4 | |
| 5 | class StepType: |
| 6 | PLAN = "plan" |
| 7 | ACTION = "action" |
| 8 | OBSERVATION = "observation" |
| 9 | REFLECTION = "reflection" |
| 10 | ERROR = "error" |
| 11 | |
| 12 | @dataclass |
| 13 | class MemoryStep: |
nothing calls this directly
no outgoing calls
no test coverage detected