The current agent mode for this session (e.g., 'interactive', 'plan', 'autopilot')
| 3690 | |
| 3691 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 3692 | class MetadataSnapshotCurrentMode(Enum): |
| 3693 | """The current agent mode for this session (e.g., 'interactive', 'plan', 'autopilot')""" |
| 3694 | |
| 3695 | AUTOPILOT = "autopilot" |
| 3696 | INTERACTIVE = "interactive" |
| 3697 | PLAN = "plan" |
| 3698 | |
| 3699 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 3700 | @dataclass |