Beispiel #1
0
 public GabAzurePipeline() : base()
 {
     Aggregator  = new Gab();
     Db          = new CosmosDB("socialnews");
     NLU         = new AzureLUIS();
     Initialized = Aggregator.Initialized && Db.Initialized;
 }
Beispiel #2
0
 public FourChanAzurePipeline() : base()
 {
     Info("Initializing 4chan Azure pipeline.");
     Aggregator  = new FourChan();
     Db          = new CosmosDB("socialnews");
     NLU         = new AzureLUIS();
     Initialized = Aggregator.Initialized && Db.Initialized && NLU.Initialized;
 }