From d6f960930d516fb063f1293cd6a4d9125b2f2d69 Mon Sep 17 00:00:00 2001 From: mbeltagy Date: Thu, 24 Oct 2024 17:54:10 +0300 Subject: [PATCH 1/3] Update README.md fixed spelling --- workers/hello_world/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/hello_world/README.md b/workers/hello_world/README.md index ca23d2d..e4e3367 100644 --- a/workers/hello_world/README.md +++ b/workers/hello_world/README.md @@ -2,7 +2,7 @@ ## Hello_world example -There is a hello_world PyWorker implantation under `workers/hello_world`. This PyWorker is +There is a hello_world PyWorker implementation under `workers/hello_world`. This PyWorker is created for an LLM model server that runs on port 5001 has two API endpoints: 1. `/generate`: generates an full response to the prompt and sends a JSON response From ff675ce3476a2ddb88547e70196ab0592af777d9 Mon Sep 17 00:00:00 2001 From: mbeltagy Date: Thu, 24 Oct 2024 18:12:27 +0300 Subject: [PATCH 2/3] Update README.md Improved text clarity --- workers/hello_world/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/hello_world/README.md b/workers/hello_world/README.md index e4e3367..297ae51 100644 --- a/workers/hello_world/README.md +++ b/workers/hello_world/README.md @@ -17,7 +17,7 @@ Both of these endpoints take the same API JSON payload: } ``` -We want the PyWorker to also expose two endpoints, for each of the above endpoints. +We want the PyWorker to also expose two endpoints that correspond to the above endpoints. ### Structure From c0c8db5a453f645732df951717d9874a157d4483 Mon Sep 17 00:00:00 2001 From: mbeltagy Date: Thu, 24 Oct 2024 18:31:47 +0300 Subject: [PATCH 3/3] Update README.md client.py is no longer there in the worker templates. --- workers/hello_world/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/workers/hello_world/README.md b/workers/hello_world/README.md index 297ae51..baa43bb 100644 --- a/workers/hello_world/README.md +++ b/workers/hello_world/README.md @@ -30,7 +30,6 @@ All PyWorkers have four files: ├── __init__.py ├── data_types.py # contains data types representing model API endpoints ├── server.py # contains endpoint handlers - ├── client.py # a script to call an endpoint through the autoscaler └── test_load.py # script for load testing ```