The session mode the agent is operating in
| 8811 | |
| 8812 | |
| 8813 | class SessionMode(Enum): |
| 8814 | "The session mode the agent is operating in" |
| 8815 | # The agent is responding interactively to the user. |
| 8816 | INTERACTIVE = "interactive" |
| 8817 | # The agent is preparing a plan before making changes. |
| 8818 | PLAN = "plan" |
| 8819 | # The agent is working autonomously toward task completion. |
| 8820 | AUTOPILOT = "autopilot" |
| 8821 | |
| 8822 | |
| 8823 | class ShutdownType(Enum): |