You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(console): the API console's AI group lists the routes that exist (framework#3718) (#2921)
`/nlq`, `/suggest` and `/insights` sat in the developer API console's AI
catalog with "try it" bodies and always 404'd — declared in the framework's
`DEFAULT_AI_ROUTES`, implemented in no repo. framework#3840 deleted the
declarations and the three dead `client.ai.*` methods that built the same
URLs; this removes the last place a user could click them.
The AI group now mirrors the twelve routes `buildAIRoutes()` mounts, adding
the four the catalog never had: `GET`/`PATCH /conversations/:id` and the
console-facing diagnostics `GET /status` and `GET /effective-model`. `POST
/chat` streams unless told otherwise, so its template now sends
`stream: false`; `/chat/stream` keeps the streaming one.
Audited table: cloud's `packages/service-ai/src/ai-route-ledger.ts`.
0 commit comments