docs: clarify comment in api_app

This commit is contained in:
psychedelicious 2024-04-01 18:31:35 +11:00
parent 35ef02bdf7
commit 5f7c852493

View File

@ -183,7 +183,7 @@ def custom_openapi() -> dict[str, Any]:
openapi_schema["components"]["schemas"]["InvocationOutputMap"]["required"].append(invoker.get_type())
invoker_schema["class"] = "invocation"
# Add all pydantic event schemas registered with fastapi-events
# Add all event schemas
for event in sorted(EventBase.get_events(), key=lambda e: e.__name__):
json_schema = event.model_json_schema(mode="serialization", ref_template="#/components/schemas/{model}")
if "$defs" in json_schema: