Update app.py
Browse files
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 |
-
|
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:
|