From b0d82e9fbb950c10c09e6c94f71fa650901a3763 Mon Sep 17 00:00:00 2001 From: Sara Zan Date: Wed, 16 Feb 2022 13:06:05 +0100 Subject: [PATCH] Update url in POST /file-uploads (#2193) --- rest_api/controller/file_upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_api/controller/file_upload.py b/rest_api/controller/file_upload.py index 0c186745b..f68cac858 100644 --- a/rest_api/controller/file_upload.py +++ b/rest_api/controller/file_upload.py @@ -84,7 +84,7 @@ def upload_file( ): """ You can use this endpoint to upload a file for indexing - (see [http://localhost:3000/guides/rest-api#indexing-documents-in-the-haystack-rest-api-document-store]). + (see https://haystack.deepset.ai/guides/rest-api#indexing-documents-in-the-haystack-rest-api-document-store). """ if not INDEXING_PIPELINE: raise HTTPException(status_code=501, detail="Indexing Pipeline is not configured.")