From b583527c37bd89d2ad749d4ec808c287d6947807 Mon Sep 17 00:00:00 2001 From: maanavd Date: Tue, 23 Jun 2026 14:22:24 -0700 Subject: [PATCH 1/2] Update Foundry CORS proxy endpoint to foundry-cors-proxy Repoint the website's model catalog proxy from the old onnxruntime-foundry-proxy Function App to the newly deployed foundry-cors-proxy Function App. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- www/.env.example | 2 +- www/src/routes/models/service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www/.env.example b/www/.env.example index 1efc178cd..23b4daec4 100644 --- a/www/.env.example +++ b/www/.env.example @@ -7,7 +7,7 @@ # Public API Endpoint (already configured in code) # This is the Azure Function proxy endpoint for CORS -# PUBLIC_FOUNDRY_API_ENDPOINT=https://onnxruntime-foundry-proxy-hpape7gzf2haesef.eastus-01.azurewebsites.net/api/foundryproxy +# PUBLIC_FOUNDRY_API_ENDPOINT=https://foundry-cors-proxy.azurewebsites.net/api/foundryproxy # Build-time variables # NODE_ENV=production diff --git a/www/src/routes/models/service.ts b/www/src/routes/models/service.ts index 75e2901c1..b2bbfdc60 100644 --- a/www/src/routes/models/service.ts +++ b/www/src/routes/models/service.ts @@ -15,7 +15,7 @@ import type { FoundryModel, GroupedFoundryModel } from './types'; // Azure Function endpoint for CORS proxy const FOUNDRY_API_ENDPOINT = - 'https://onnxruntime-foundry-proxy-hpape7gzf2haesef.eastus-01.azurewebsites.net/api/foundryproxy'; + 'https://foundry-cors-proxy.azurewebsites.net/api/foundryproxy'; export interface ApiFilters { device?: string; From 3e72272b8f5205a29a9739e7526e42a1e347defa Mon Sep 17 00:00:00 2001 From: maanavd Date: Thu, 25 Jun 2026 12:00:02 -0700 Subject: [PATCH 2/2] Retrigger Vercel deployment Creates a no-op commit to request a fresh Vercel deployment for PR #833 without changing source content. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>