📝 Update docs for responses and new stream with yield (#15023)

This commit is contained in:
Sebastián Ramírez
2026-02-27 12:51:40 -08:00
committed by GitHub
parent c0836dc1b7
commit 1377052c6c
5 changed files with 67 additions and 36 deletions

View File

@@ -26,6 +26,7 @@ def get_client(mod):
[
"/image/stream",
"/image/stream-no-async",
"/image/stream-no-async-yield-from",
"/image/stream-no-annotation",
"/image/stream-no-async-no-annotation",
],
@@ -73,6 +74,20 @@ def test_openapi_schema(client: TestClient):
},
}
},
"/image/stream-no-async-yield-from": {
"get": {
"summary": "Stream Image No Async Yield From",
"operationId": "stream_image_no_async_yield_from_image_stream_no_async_yield_from_get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"image/png": {"schema": {"type": "string"}}
},
}
},
}
},
"/image/stream-no-annotation": {
"get": {
"summary": "Stream Image No Annotation",