Skip to content

bilgeyucel/document-search-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

🔎 Document Search Demo

This is the source code for Using Haystack with REST API tutorial.

Usage

Clone this repository and run docker-compose up inside /doc-search folder:

git clone https://github.com/bilgeyucel/document-search-demo
cd doc-search
docker-compose up

This will launch an empty Elasticsearch instance and the Haystack API. Test if everything is OK with the Haystack API by sending a cURL request to the /initialized endpoint. If everything works fine, you will get true as a response.

curl --request GET http://127.0.0.1:8000/initialized

To upload your documents to Elasticsearch, follow the Indexing Files to Elasticsearch section of the tutorial.