struct ConversationState: Stateable { var currentChat: Chat? var dumb: Bool } // MARK: Init extension ConversationState { init() { dumb = false } }