* Create the initial store state.
()
| 65 | * Create the initial store state. |
| 66 | */ |
| 67 | function createInitialState(): StoreState { |
| 68 | return { |
| 69 | messages: [], |
| 70 | agentState: detectAgentState([]), |
| 71 | isInitialized: false, |
| 72 | lastUpdatedAt: Date.now(), |
| 73 | currentMode: undefined, |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | // ============================================================================= |
| 78 | // State Store Class |
no test coverage detected