Jai12345 commited on
Commit
124c769
1 Parent(s): 16aec2e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -41,11 +41,9 @@ def tutorial1_basic_qa_pipeline():
41
  # You can start Elasticsearch on your local machine instance using Docker. If Docker is not readily available in
42
  # your environment (e.g. in Colab notebooks), then you can manually download and execute Elasticsearch from source.
43
 
44
- from haystack.document_stores import InMemoryDocumentStore
45
-
46
- document_store = InMemoryDocumentStore()
47
-
48
 
 
49
  # ## Preprocessing of documents
50
  #
51
  # Haystack provides a customizable pipeline for:
41
  # You can start Elasticsearch on your local machine instance using Docker. If Docker is not readily available in
42
  # your environment (e.g. in Colab notebooks), then you can manually download and execute Elasticsearch from source.
43
 
44
+ from haystack.document_stores import InMemoryDocumentStore
 
 
 
45
 
46
+ document_store = InMemoryDocumentStore()
47
  # ## Preprocessing of documents
48
  #
49
  # Haystack provides a customizable pipeline for: