Fix flow so that corenlp is called together with API fetch
Currently our code looks like this:
We call flowCorpusUser
which makes the CoreNLP
query after all docs are imported. However, the external APIs are fragile and with longer queries they fail often. It is bad that ngrams are empty after such import. We could rewrite this so that CoreNLP is called alongside of API fetch, in conduit. Later we could parallelize that even further so that the API fetch and CoreNLP are called in parallel.