No need to document QueryCreateAnalyzeView

This commit is contained in:
Simon Willison 2026-05-26 14:53:31 -07:00
commit 0cadd07187

View file

@ -66,7 +66,14 @@ def documented_views():
if first_word.endswith("View"):
view_labels.add(first_word)
# We deliberately don't document these:
view_labels.update(("PatternPortfolioView", "AuthTokenView", "ApiExplorerView"))
view_labels.update(
(
"PatternPortfolioView",
"AuthTokenView",
"ApiExplorerView",
"QueryCreateAnalyzeView",
)
)
return view_labels