Merge pull request #2 from mbeltagy/patch-1

Update README.md
This commit is contained in:
Nader Arbabian
2025-04-09 12:17:58 -07:00
committed by GitHub
+1 -2
View File
@@ -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 ### Structure
@@ -30,7 +30,6 @@ All PyWorkers have four files:
├── __init__.py ├── __init__.py
├── data_types.py # contains data types representing model API endpoints ├── data_types.py # contains data types representing model API endpoints
├── server.py # contains endpoint handlers ├── server.py # contains endpoint handlers
├── client.py # a script to call an endpoint through the autoscaler
└── test_load.py # script for load testing └── test_load.py # script for load testing
``` ```