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
The Gemini resumable upload endpoint now also answers at /gemini/upload/v1/files. Everything under the version segment was already served on both v1beta and v1, but upload/ sits ahead of that segment and was mounted on the preview version alone, so a client configured with apiVersion: "v1" — a supported setting now that the Interactions API and the rest of the surface are generally available on the stable version — got a 404 on file uploads only. The resumable session URL stays on whichever prefix the request came in on.
The 404 for an unknown model names the version the request was made on instead of always claiming v1beta, matching what the real API reports to a caller on /v1.
Added
GET /azure/openai/deployments?api-version= and GET /azure/openai/deployments/{deployment}, the legacy data-plane listing, so a client can discover deployment names without leaving the endpoint it is pointed at — managing deployments on the real service moved to ARM, which a mock behind a single base URL cannot represent. One deployment per catalog model, named after the model it points at; any other name is described too, since the mock accepts any of them for inference. The reserved missing- prefix still answers DeploymentNotFound.