@@ -8,7 +8,7 @@ It provides worker registration, load balancing, health checking, refit weights
88
99## Table of Contents
1010
11- - [ Overview] ( #Overview )
11+ - [ Overview] ( #overview )
1212- [ Installation] ( #installation )
1313- [ Quick Start] ( #quick-start )
1414 - [ Start diffusion workers] ( #start-diffusion-workers )
@@ -18,7 +18,7 @@ It provides worker registration, load balancing, health checking, refit weights
1818 - [ Videos Result Query] ( #videos-result-query )
1919 - [ Model Discovery and Health Checks] ( #model-discovery-and-health-checks )
2020 - [ Worker Management APIs] ( #worker-management-apis )
21- - [ Optional (business-dependent) ] ( #optional-business-dependent )
21+ - [ RL Related API ] ( #rl-related-api )
2222- [ Acknowledgment] ( #acknowledgment )
2323
2424---
@@ -209,7 +209,7 @@ curl -X POST http://localhost:30081/v1/videos \
209209 -d ' {"model": "Qwen/Qwen-Image", "prompt": "a flowing river"}'
210210
211211# Poll a specific video job by video_id
212- curl http://localhost:30081/v1/videos/< video_id>
212+ curl http://localhost:30081/v1/videos/{ video_id}
213213
214214
215215curl -X POST http://localhost:30081/update_weights_from_disk \
@@ -263,11 +263,11 @@ Video query routing is stable by `video_id`: router caches `video_id -> worker`
263263- ` is_dead ` (boolean): quarantine (` true ` ) or recover (` false ` ) this worker.
264264- ` refresh_video_support ` (boolean): re-probe worker ` /v1/models ` capability.
265265
266- ### Optional (business-dependent)
266+ ### RL Related API
267267
268268| Method | Path | Description |
269269| ---| ---| ---|
270- | ` POST ` | ` /update_weights_from_disk ` | Reload weights from disk (ops/admin use) |
270+ | ` POST ` | ` /update_weights_from_disk ` | Reload weights from disk on all healthy workers |
271271
272272---
273273
0 commit comments