We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab4ce0 commit acdb9deCopy full SHA for acdb9de
veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/app.py
@@ -143,7 +143,14 @@ async def combined_lifespan(app: FastAPI):
143
144
145
# Create main FastAPI app with combined lifespan
146
-app = FastAPI(title=a2a_app.title, version=a2a_app.version, lifespan=combined_lifespan)
+app = FastAPI(
147
+ title=a2a_app.title,
148
+ version=a2a_app.version,
149
+ lifespan=combined_lifespan,
150
+ openapi_url=None,
151
+ docs_url=None,
152
+ redoc_url=None
153
+)
154
155
# Mount A2A routes to main app
156
for route in a2a_app.routes:
0 commit comments