jessehostetler commited on
Commit
ec53f66
·
1 Parent(s): 7dfa32a

More README improvements

Browse files
Files changed (1) hide show
  1. README.md +125 -58
README.md CHANGED
@@ -6,54 +6,40 @@ license: apache-2.0
6
 
7
  This project provides a starting point for implementing a submission to the [SAFE: Image Edit Detection and Localization Challenge 2025](https://app.dyff.io/challenges/dc509a8c771b492b90c43012fde9a04f). You do not need to use this code to participate in the challenge.
8
 
9
- # How to participate
10
-
11
- Visit the [challenge home page](https://app.dyff.io/challenges/dc509a8c771b492b90c43012fde9a04f) and sign up using the linked registration form.
12
 
13
- # How to make a submission
14
-
15
- The infrastructure for the challenge runs on [DSRI's Dyff platform](https://app.dyff.io). Submissions to the challenge must be in the form of a containerized web service that serves a simple JSON HTTP API. If you're comfortable building a Docker image yourself, you can create a submission from a built image using the [Dyff client](https://docs.dyff.io/python-api/dyff.client/). Or, you can create a Docker [HuggingFace Space](https://huggingface.co/new-space?sdk=docker) and create submissions from the space using a [webform](https://challenge.dyff.io/submit).
16
 
17
- ## General considerations
 
 
18
 
19
- * Your submission will run **without Internet access** during evaluation. All of the files required to run your submission must be packaged along with it. You can either include files in the Docker image, or upload the files as a separate package and mount them in your application container during execution.
20
 
21
- ## Submitting a Docker HuggingFace Space
22
 
23
- These are the steps to prepare a HF Space for making submissions to the challenge:
24
 
25
- 1. Create a new HuggingFace [**Organization**](https://huggingface.co/organizations/new) (**not a user account**) for your challenge team. **The length of your combined Organization name + Space name must be less than 47 characters** due to a limitation of the HuggingFace API.
26
- 2. Add the [official SAFE Challenge user account](https://huggingface.co/safe-challenge-2025-submissions) as a Member of your organization with `read` permissions. **Make sure you are adding the correct user account;** the account name is `safe-challenge-2025-submissions`. This allows our infrastructure to pull the Docker image built by your Space.
27
- 3. Create a new `Space` within your `Organization`. The Space must use the [Docker SDK](https://huggingface.co/new-space?sdk=docker). **Private Spaces are OK and they will work with the submission process** because you granted `read` access in the previous step. **The length of your combined Organization name + Space name must be less than 47 characters** due to a limitation of the HuggingFace API.
28
- 4. Create a file called `DYFF_TEAM` in the root directory of your HF Space. The contents of the file should be your Team ID (not your Account ID); your Team ID is a 32-character hexidecimal string. This file allows our infrastructure to verify that your Team controls this HF Space.
29
- 5. Create a `Dockerfile` in your Space that builds your challenge submission image.
30
- 6. Run the Space; this will build the Docker image.
31
- 7. When you're ready to submit, use the [submission webform](https://challenge.dyff.io/submit) and enter the URL of your Space and the branch that you want to submit.
32
 
33
- ### Handling large models
34
 
35
- There is a size limitation on Space repositories. If your submission contains large files (such as neural network weights), it may be too large to store in the space. In this case, you need to fetch your files from somewhere else **during the Docker build process**.
36
 
37
- This means that your Dockerfile should contain something like this:
38
 
39
- ```
40
- COPY download-my-model.sh ./
41
- RUN ./download-my-model.sh
42
- ```
43
 
44
- ### Handling private models
45
 
46
- If access credentials are required to download your model files, you should provide them using the [Secrets feature](https://huggingface.co/docs/hub/spaces-overview#managing-secrets) of HuggingFace Spaces. **Do not hard-code credentials in your Dockerfile or anywhere else in your Space or Organization!**
47
 
48
- Access the secrets as described in the [Secrets > Buildtime section](https://huggingface.co/docs/hub/spaces-sdks-docker#secrets). Remember that you can't download files at run-time because your system will not have access to the Internet.
49
 
50
- ## Submitting using the Dyff API
51
 
52
- If you need more flexibility than HuggingFace Spaces allow, or if you just prefer to work with CLI tools and scripts, you can create submissions using the Dyff API.
53
 
54
  In the [terminology of Dyff](https://docs.dyff.io/tutorial/), the thing that you're submitting is an `InferenceService`. You can think of an `InferenceService` as a recipe for spinning up a Docker container that runs an HTTP server that serves an inference API. To create a new submission, you need to upload the Docker image that the service should run, and, optionally, a volume of files such as neural network weights that will be mounted in the container.
55
 
56
- ### Install the Dyff SDK
57
 
58
  You need Python 3.10+ (3.12 recommended). We recommend you install into a virtual environment. If you're using this repository, you can install `dyff` and a few other useful dependencies as described in the [Quick Start](#quick-start) section:
59
 
@@ -71,20 +57,26 @@ source venv/bin/activate
71
  python3 -m pip install --upgrade dyff
72
  ```
73
 
74
- ### Prepare the submission data
75
 
76
- Before creating a submission, you need to build the Docker image you want to submit locally. For example, running the `make docker-build` command in this repository will build a Docker image in your local Docker daemon with the name `safe-challenge-2025/example-submission:latest`. You can check that the image exists using the `docker images` command:
 
 
 
 
77
 
78
  ```
79
  $ docker images
80
- REPOSITORY TAG IMAGE ID CREATED SIZE
81
- safe-challenge-2025/example-submission latest b86a46d856f0 3 hours ago 1.86GB
82
  ...
83
  ```
84
 
85
- If your submission includes large data files such as neural network weights, we recommend that you upload these separately from the Docker image and then arrange for them to be mounted in the running container at run-time. You can upload a local directory recursively to the Dyff platform. Once uploaded, you will get the ID of a Dyff `Model` resources that you can reference
 
 
86
 
87
- ### Use the `challenge-cli` tool
88
 
89
  This repository contains a CLI script that simplifies the submission process. Usage is like this:
90
 
@@ -100,7 +92,11 @@ Commands:
100
  upload-submission
101
  ```
102
 
103
- You create a new submission in two steps. First, upload the submission files:
 
 
 
 
104
 
105
  ```
106
  DYFF_API_TOKEN=<your token> python3 challenge-cli.py upload-submission [OPTIONS]
@@ -110,7 +106,15 @@ Notice that we're providing an access token via an environment variable.
110
 
111
  This command creates a Dyff `Artifact` resource corresponding to your Docker image, an optional Dyff `Model` resource containing your uploaded model files, and a Dyff `InferenceService` resource that references the `Artifact` and the `Model`.
112
 
113
- You need to specify your Account ID and the names and paths of the resources you want to upload. You can also use the `--artifact` and `--model` flags to provide the IDs of an `Artifact` or `Model` that already exists instead of creating a new one. For example, if you always use the same Docker image but you mount different model weights in it for different submissions, you can create the Docker image `Artifact` once, and then reference its ID in `--artifact`.
 
 
 
 
 
 
 
 
114
 
115
  After uploading the submission files, you create the actual `Submission` resource with:
116
 
@@ -118,14 +122,53 @@ After uploading the submission files, you create the actual `Submission` resourc
118
  DYFF_API_TOKEN=<your token> python3 challenge-cli.py submit [OPTIONS]
119
  ```
120
 
121
- When submitting, you reference the ID of the `InferenceService` you created in the previous step. You also provide your Account ID, your Team ID for the challenge, and the Task ID that you're submitting to.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
 
123
 
124
  # How to implement a detector
125
 
126
  To implement a new detector that you can submit to the challenge, you need to implement an HTTP server that serves the required JSON API for inference requests. This repository contains a template that you can use as a starting point for implementing a detector in Python. You should be able to adapt this template easily to support common model formats such as neural networks built with PyTorch.
127
 
128
- You are also free to build detectors with any other technologies and software stacks that you want, but you may have to figure out packaging on your own.
129
 
130
  ## Quick Start
131
 
@@ -151,7 +194,7 @@ In a second terminal:
151
  ./prompt.sh cat.json
152
  ```
153
 
154
- Server runs on `http://127.0.0.1:8000`. Check `/docs` for the interactive API documentation.
155
 
156
  **Docker:**
157
  ```bash
@@ -162,8 +205,25 @@ make docker-build
162
  make docker-run
163
  ```
164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  ## Testing the API
166
 
 
 
167
  ```bash
168
  # Using curl
169
  curl -X POST http://localhost:8000/predict \
@@ -171,7 +231,7 @@ curl -X POST http://localhost:8000/predict \
171
  -d '{
172
  "image": {
173
  "mediaType": "image/jpeg",
174
- "data": "<base64-encoded-image>"
175
  }
176
  }'
177
  ```
@@ -298,9 +358,9 @@ The default configuration in this repo runs the model on CPU and does not contai
298
 
299
  To enable GPU inference, you need to:
300
 
301
- 1. Base your Docker image on an image that contains the CUDA system packages
302
- 2. Install the GPU version of PyTorch and its dependencies
303
- 3. Use the `.to()` function as necessary in the `load_model()` and `predict()` functions to move model weights and input data to and from the CUDA device
304
 
305
  ## Configuration
306
 
@@ -329,18 +389,7 @@ export MODEL_NAME="google/vit-base-patch16-224"
329
  uvicorn main:app --reload
330
  ```
331
 
332
- ## What Happens When You Start the Server
333
 
334
- ```
335
- INFO: Starting ML Inference Service...
336
- INFO: Initializing ResNet service: models/microsoft/resnet-18
337
- INFO: Loading model from models/microsoft/resnet-18
338
- INFO: Model loaded: 1000 classes
339
- INFO: Startup completed successfully
340
- INFO: Uvicorn running on http://0.0.0.0:8000
341
- ```
342
-
343
- If you see "Model directory not found", check that your model files exist at the expected path with the full org/model structure.
344
 
345
  ## API Reference
346
 
@@ -356,18 +405,36 @@ If you see "Model directory not found", check that your model files exist at the
356
  }
357
  ```
358
 
 
 
359
  **Response:**
360
  ```json
361
  {
362
- "logprobs": [float], // Log-probabilities of each label
363
  "localizationMask": { // [Optional] binary mask
364
- "mediaType": "image/png", // Always png
365
  "data": "<base64 string>" // Image data
366
  }
367
  }
368
  ```
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  **Docs:**
 
 
 
371
  - Swagger UI: `http://localhost:8000/docs`
372
  - ReDoc: `http://localhost:8000/redoc`
373
  - OpenAPI JSON: `http://localhost:8000/openapi.json`
 
6
 
7
  This project provides a starting point for implementing a submission to the [SAFE: Image Edit Detection and Localization Challenge 2025](https://app.dyff.io/challenges/dc509a8c771b492b90c43012fde9a04f). You do not need to use this code to participate in the challenge.
8
 
9
+ ## Clone this repository
 
 
10
 
11
+ To use the code and tools in this repository, [clone it](https://huggingface.co/docs/hub/en/repositories-getting-started#cloning-repositories) with `git`:
 
 
12
 
13
+ ```
14
+ git clone https://huggingface.co/safe-challenge-2025/example-submission
15
+ ```
16
 
 
17
 
18
+ # How to participate
19
 
20
+ Visit the [challenge home page](https://app.dyff.io/challenges/dc509a8c771b492b90c43012fde9a04f) and sign up using the linked registration form.
21
 
 
 
 
 
 
 
 
22
 
23
+ # How to make a submission
24
 
25
+ The infrastructure for the challenge runs on [DSRI's Dyff platform](https://app.dyff.io). Submissions to the challenge must be in the form of a containerized web service that serves a simple JSON HTTP API.
26
 
27
+ If you're comfortable building a Docker image yourself, the [preferred way](#submitting-using-the-dyff-api) to make a submission is to upload and submit a built image using the [Dyff client](https://docs.dyff.io/python-api/dyff.client/).
28
 
29
+ Alternatively, you can create a Docker [HuggingFace Space](https://huggingface.co/new-space?sdk=docker) and [create submissions from the space](#submitting-a-docker-huggingface-space) using a [webform](https://challenge.dyff.io/submit). The advantage of using an HF Space is that it builds the Docker image for you. However, HF Spaces also have some limitations that you'll need to account for.
 
 
 
30
 
31
+ ## General considerations
32
 
33
+ * Your submission will run **without Internet access** during evaluation. All of the files required to run your submission must be packaged along with it. You can either include files in the Docker image, or upload the files as a separate package and mount them in your application container during execution.
34
 
 
35
 
36
+ # Submitting using the Dyff API
37
 
38
+ If you're able to build a Docker image for your submission yourself, the preferred way to make submissions is via the Dyff API. We provide a command line tool (`challenge-cli.py`) in this repository to simplify the submission process.
39
 
40
  In the [terminology of Dyff](https://docs.dyff.io/tutorial/), the thing that you're submitting is an `InferenceService`. You can think of an `InferenceService` as a recipe for spinning up a Docker container that runs an HTTP server that serves an inference API. To create a new submission, you need to upload the Docker image that the service should run, and, optionally, a volume of files such as neural network weights that will be mounted in the container.
41
 
42
+ ## Install the Dyff SDK
43
 
44
  You need Python 3.10+ (3.12 recommended). We recommend you install into a virtual environment. If you're using this repository, you can install `dyff` and a few other useful dependencies as described in the [Quick Start](#quick-start) section:
45
 
 
57
  python3 -m pip install --upgrade dyff
58
  ```
59
 
60
+ ## Install `skopeo`
61
 
62
+ To upload Docker images via the Dyff API, you need to have the [`skopeo` tool](https://github.com/containers/skopeo) in your PATH.
63
+
64
+ ## Prepare the submission data
65
+
66
+ Before creating a submission, you need to build the Docker image that you want to submit locally. For example, running the `make docker-build` command in this repository will build a Docker image in your local Docker daemon with the name `safe-challenge-2025/example-submission:latest`. You can check that the image exists using the `docker images` command:
67
 
68
  ```
69
  $ docker images
70
+ REPOSITORY TAG IMAGE ID CREATED SIZE
71
+ safe-challenge-2025/example-submission latest b86a46d856f0 3 hours ago 1.86GB
72
  ...
73
  ```
74
 
75
+ If your submission includes large data files such as neural network weights, we recommend that you upload these separately from the Docker image and then arrange for them to be mounted in the running container at run-time. You can upload a local directory recursively to the Dyff platform. Once uploaded, you will get the ID of a Dyff `Model` resources that you can reference in your `InferenceService`.
76
+
77
+ If you're uploading your large files separately as a `Model`, you'll need to tell Dyff where to mount them in your container. When testing your system locally, you can use the `-v/--volume` flag with `docker run` to [mount a local directory](https://docs.docker.com/engine/storage/volumes/) in the container. Then, just make sure to specify the same mount path when creating your `InferenceService` in Dyff.
78
 
79
+ ## Use the `challenge-cli` tool
80
 
81
  This repository contains a CLI script that simplifies the submission process. Usage is like this:
82
 
 
92
  upload-submission
93
  ```
94
 
95
+ You create a new submission in two steps. First, you upload the submission files and create an `InferenceService`. Then, you create the actual `Submission` resource to tell the Dyff platform that you want to submit the `InferenceService` for the challenge.
96
+
97
+ ### Upload submission files
98
+
99
+ To upload submission files, use the `upload-submission` command:
100
 
101
  ```
102
  DYFF_API_TOKEN=<your token> python3 challenge-cli.py upload-submission [OPTIONS]
 
106
 
107
  This command creates a Dyff `Artifact` resource corresponding to your Docker image, an optional Dyff `Model` resource containing your uploaded model files, and a Dyff `InferenceService` resource that references the `Artifact` and the `Model`.
108
 
109
+ You need to provide your Account ID with `--account`, a name for your system with `--name`, and a Docker image name + tag with `--image`. The tool will create a Dyff `Artifact` resource representing the Docker image.
110
+
111
+ If your system serves the inference endpoint at a route other than `predict`, use the `--endpoint` flag to specify the correct route.
112
+
113
+ If you are uploading your large files in a separate data volume, use the `--volume` flag to specify the directory tree to upload, and use the `--volume-mount` flag to set the path where this direcctory should be mounted in the running container. When you use the flags, the tool creates a Dyff `Model` resource representing the uploaded files.
114
+
115
+ You can also use the `--artifact` and `--model` flags to provide the ID of an `Artifact` or `Model` that already exists instead of creating a new one. For example, if you always use the same Docker image but you mount different model weights in it for different submissions, you can create the Docker image `Artifact` once, and then reference its ID with `--artifact` to avoid uploading it again.
116
+
117
+ ### Submit your system for evaluation
118
 
119
  After uploading the submission files, you create the actual `Submission` resource with:
120
 
 
122
  DYFF_API_TOKEN=<your token> python3 challenge-cli.py submit [OPTIONS]
123
  ```
124
 
125
+ When submitting, you provide the ID of the `InferenceService` you created in the previous step in `--service`. You also provide your Account ID in `--account`, your Team ID for the challenge in `--team`, and the Task ID that you're submitting to in `--task`.
126
+
127
+
128
+ # Submitting a Docker HuggingFace Space
129
+
130
+ If you can't build a Docker image yourself, or if the steps above seem too confusing, you can make a submission without interacting with the Dyff API directly by submitting from a HuggingFace Space. HF Spaces that use the Docker SDK will build a Docker image from the contents of the repository associated with the Space when the Space is run. You can then grant the Dyff platform permission to pull this image and use a web form to trigger a new submission.
131
+
132
+ These are the steps to prepare a HF Space for making submissions to the challenge:
133
+
134
+ 1. Create a new HuggingFace [**Organization**](https://huggingface.co/organizations/new) (**not a user account**) for your challenge team. **The length of your combined Organization name + Space name must be less than 47 characters** due to a limitation of the HuggingFace API.
135
+ 2. Create a new `Space` within your `Organization`. The Space must use the [Docker SDK](https://huggingface.co/new-space?sdk=docker). **Private Spaces are OK and they will work with the submission process.** **The length of your combined Organization name + Space name must be less than 47 characters** due to a limitation of the HuggingFace API.
136
+ 3. Create a file called `DYFF_TEAM` in the root directory of your HF Space. The contents of the file should be your Team ID (not your Account ID). This file allows our infrastructure to verify that your Team controls this HF Space.
137
+ 4. Create a `Dockerfile` in your Space that builds your challenge submission image.
138
+ 5. Run the Space; this will build the Docker image.
139
+
140
+ To make a challenge submission from your Space:
141
+
142
+ 1. Add the [official SAFE Challenge user account](https://huggingface.co/safe-challenge-2025-submissions) as a Member of your organization with `read` permissions. **Make sure you are adding the correct user account;** the account name is `safe-challenge-2025-submissions`. This grants permission to our infrastructure to pull the Docker image built by your Space.
143
+ 2. When you're ready to submit, use the [submission web form](https://challenge.dyff.io/submit) and enter the URL of your Space and the branch that you want to submit.
144
+
145
+ ## Handling large models
146
+
147
+ There is a size limitation on Space repositories. If your submission contains large files (such as neural network weights), it may be too large to store in the space. In this case, you need to fetch your files from somewhere else **during the Docker build process**.
148
+
149
+ This means that your Dockerfile should contain something like this:
150
+
151
+ ```
152
+ COPY download-my-model.sh ./
153
+ RUN ./download-my-model.sh
154
+ ```
155
+
156
+ One convenient option is to create a seperate [HuggingFace Model repository](https://huggingface.co/new?owner=my-challenge-org) and use `git clone` in your Dockerfile to fetch the repository files.
157
+
158
+ ## Handling private models
159
+
160
+ If access credentials are required to download your model files, you should provide them using the [Secrets feature](https://huggingface.co/docs/hub/spaces-overview#managing-secrets) of HuggingFace Spaces. **Do not hard-code credentials in your Dockerfile or anywhere else in your Space or Organization!**
161
+
162
+ Access credentials are necessary if you want to clone a private HuggingFace Model repository during your Docker build process.
163
+
164
+ Access the secrets as described in the [Secrets > Buildtime section](https://huggingface.co/docs/hub/spaces-sdks-docker#secrets). Remember that you can't download files at run-time because your system will not have access to the Internet.
165
 
166
 
167
  # How to implement a detector
168
 
169
  To implement a new detector that you can submit to the challenge, you need to implement an HTTP server that serves the required JSON API for inference requests. This repository contains a template that you can use as a starting point for implementing a detector in Python. You should be able to adapt this template easily to support common model formats such as neural networks built with PyTorch.
170
 
171
+ You are also free to build detectors with any other technologies and software stacks that you want, but you may have to figure out packaging on your own. All that's required of your submission is that it runs in a Docker container and that it supports the [required inference API](#api-reference).
172
 
173
  ## Quick Start
174
 
 
194
  ./prompt.sh cat.json
195
  ```
196
 
197
+ The server runs on `http://127.0.0.1:8000`. Check `/docs` for the interactive API documentation.
198
 
199
  **Docker:**
200
  ```bash
 
205
  make docker-run
206
  ```
207
 
208
+ The Docker container also runs the server at `http://127.0.0.1:8000`.
209
+
210
+ ## What Happens When You Start the Server
211
+
212
+ ```
213
+ INFO: Starting ML Inference Service...
214
+ INFO: Initializing ResNet service: models/microsoft/resnet-18
215
+ INFO: Loading model from models/microsoft/resnet-18
216
+ INFO: Model loaded: 1000 classes
217
+ INFO: Startup completed successfully
218
+ INFO: Uvicorn running on http://0.0.0.0:8000
219
+ ```
220
+
221
+ If you see "Model directory not found", check that your model files exist at the expected path with the full org/model structure.
222
+
223
  ## Testing the API
224
 
225
+ By default, the server serves the inference API at `/predict`:
226
+
227
  ```bash
228
  # Using curl
229
  curl -X POST http://localhost:8000/predict \
 
231
  -d '{
232
  "image": {
233
  "mediaType": "image/jpeg",
234
+ "data": "<base64-encoded-image-data>"
235
  }
236
  }'
237
  ```
 
358
 
359
  To enable GPU inference, you need to:
360
 
361
+ 1. Base your Docker image on an image that contains the CUDA system packages such as [this one](https://hub.docker.com/layers/nvidia/cuda/13.0.2-cudnn-runtime-ubuntu24.04/images/sha256-4d242f206abc4b9588a6506cce2d88932cc879849395aae3785075179718cc49). If you're using the `nvidia/cuda` images, you probably want one of the `-runtime-` tags, as the `-devel-` versions contain dependencies you probably don't need.
362
+ 2. Install the GPU version of PyTorch (or whichever framework you use).
363
+ 3. Use the PyTorch `.to()` function (or its equivalent in your framework) in the `load_model()` and `predict()` functions to move model weights and input data to and from the CUDA device.
364
 
365
  ## Configuration
366
 
 
389
  uvicorn main:app --reload
390
  ```
391
 
 
392
 
 
 
 
 
 
 
 
 
 
 
393
 
394
  ## API Reference
395
 
 
405
  }
406
  ```
407
 
408
+ To decode a request, first convert `.image.data` from a base64 string to binary data (i.e., a Python `bytes` string), then interpret the binary data as image data of the type specified in `.image.mediaType`. The `.image.mediaType` will be either `image/jpeg` or `image/png`.
409
+
410
  **Response:**
411
  ```json
412
  {
413
+ "logprobs": [float], // Log-probabilities of each label (length 4)
414
  "localizationMask": { // [Optional] binary mask
415
+ "mediaType": "image/png", // Must be 'image/png'
416
  "data": "<base64 string>" // Image data
417
  }
418
  }
419
  ```
420
 
421
+ The `.logprobs` field must contain a list of `floats` of length `4`. Each index in the list corresponds to the log-probability of the associated label. The possible labels are describe in the `app.api.models.Labels` enumeration:
422
+
423
+ ```python
424
+ Natural = 0
425
+ FullySynthesized = 1
426
+ LocallyEdited = 2
427
+ LocallySynthesized = 3
428
+ ```
429
+
430
+ The `Synthesized` labels mean that the image was partially or fully synthesized by a tool such as a generative image model. The `LocallyEdited` label means that the image was manipulated in some way other than by synthesizing content, such as by copying and pasting content from another image using image editing software.
431
+
432
+ The `.localizationMask` field is optional, but you should populate it if your detector is capable of localizing its detections. The mask is a binary (`0/1`) bitmap encoded as a PNG image. A non-zero value for a pixel means that the detector thinks that that pixel has been manipulated. A Python function to convert a `numpy` array to a PNG mask is provided in `app.api.models.BinaryMask.from_numpy()`.
433
+
434
  **Docs:**
435
+
436
+ The server in this repository serves API docs at the following endpoints:
437
+
438
  - Swagger UI: `http://localhost:8000/docs`
439
  - ReDoc: `http://localhost:8000/redoc`
440
  - OpenAPI JSON: `http://localhost:8000/openapi.json`