From 728a5d4aa44f047d6e9c9aee992fc598537c7f3d Mon Sep 17 00:00:00 2001 From: armanddidierjean <95971503+armanddidierjean@users.noreply.github.com> Date: Fri, 7 Aug 2026 16:06:55 +0200 Subject: [PATCH] fix: us custom operation ids for routes using generate_unique_id_function --- app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.py b/app/app.py index 3a3ffdb64c..95a5eca3d0 100644 --- a/app/app.py +++ b/app/app.py @@ -645,7 +645,7 @@ async def lifespan(app: FastAPI) -> AsyncGenerator[LifespanState]: title="Hyperion", version=settings.HYPERION_VERSION, lifespan=lifespan, - custom_generate_unique_id=use_route_path_as_operation_id, + generate_unique_id_function=use_route_path_as_operation_id, ) app.include_router(api.api_router)