Implements parallel openapi spec only for use by LLM#1336
Open
vshekar wants to merge 8 commits into
Open
Conversation
This is for testing purposes only
Update OpenAPI schema and endpoint descriptions
danielballan
reviewed
Apr 8, 2026
| async def healthz(): | ||
| return {"status": "ready"} | ||
|
|
||
| @app.get("/openapi_agent.json", include_in_schema=False) |
Member
There was a problem hiding this comment.
Capturing an idea from conversation:
If we implement this as openapi.json?agent it will gracefully fallback to openapi.json if we later change our minds about wanting a separate/dedicated schema for agents. (Maybe in the future agents will have bigger context windows....)
Contributor
There was a problem hiding this comment.
might be tricky because FastAPI registers that endpoint internally and customizing it may break /docs and /redoc. Probably updating custom_openapi is our best option
Contributor
There was a problem hiding this comment.
re-declared all three below... not sure it's the best option
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is for testing purposes only
Checklist