From 4d855afe973a08ad81966d22adaadc5916b9126d Mon Sep 17 00:00:00 2001 From: Elin Angelov Date: Fri, 11 Aug 2023 21:14:53 +0300 Subject: [PATCH] Update README.md (#1260) * Update README.md Signed-off-by: Elin Angelov * Update README.md Signed-off-by: Elin Angelov * Update README.md Signed-off-by: Elin Angelov * Changed wording a tiny bit again Signed-off-by: niansa/tuxifan * Added missing space Signed-off-by: niansa/tuxifan --------- Signed-off-by: Elin Angelov Signed-off-by: niansa/tuxifan Co-authored-by: niansa/tuxifan --- gpt4all-api/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gpt4all-api/README.md b/gpt4all-api/README.md index a6b8c3c1..577bbd3e 100644 --- a/gpt4all-api/README.md +++ b/gpt4all-api/README.md @@ -4,9 +4,13 @@ for serving inference from GPT4All models. The API matches the OpenAI API spec. ## Tutorial +The following tutorial assumes that you have checked out this repo and cd'd into it. + ### Starting the app -First build the FastAPI docker image. You only have to do this on initial build or when you add new dependencies to the requirements.txt file: +First change your working directory to `gpt4all/gpt4all-api`. + +Now you can build the FastAPI docker image. You only have to do this on initial build or when you add new dependencies to the requirements.txt file: ```bash DOCKER_BUILDKIT=1 docker build -t gpt4all_api --progress plain -f gpt4all_api/Dockerfile.buildkit . ```