Commit 6b2923a
authored
Update status endpoint path in documentation (#2920)
The defined path, llm/v1/status is incorrect and will return a 404
```bash
curl http://localhost:8080/llm/v1/status -i
HTTP/1.1 404 NOT FOUND
```
The correct path should simply be `/status`
```bash
$ curl http://localhost:8080/status -i
HTTP/1.1 200 OK
Server: gunicorn
Date: Wed, 17 Sep 2025 19:25:25 GMT
Connection: close
Content-Type: application/json
Content-Length: 102
{"status":"ok","model_name":"microsoft/llmlingua-2-xlm-roberta-large-meetingbank","device_map":"cpu"}
```1 parent f2b64b0 commit 6b2923a
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
136 | 136 | | |
137 | 137 | | |
138 | 138 | | |
139 | | - | |
| 139 | + | |
140 | 140 | | |
141 | 141 | | |
142 | 142 | | |
| |||
212 | 212 | | |
213 | 213 | | |
214 | 214 | | |
215 | | - | |
| 215 | + | |
0 commit comments