fix: persist Azure providerSpecificData and add connection test

- Read body.providerSpecificData in POST /api/providers so Azure fields
  (endpoint, deployment, apiVersion, organization) are actually stored
- Add azure case to testApiKeyConnection so the Test button works
  correctly instead of falling through to "not supported"

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
kundeng
2026-04-20 01:45:13 -04:00
parent 00bd1a4151
commit c894fa838d
2 changed files with 16 additions and 1 deletions

View File

@@ -365,6 +365,21 @@ async function testApiKeyConnection(connection, effectiveProxy = null) {
try { try {
switch (connection.provider) { switch (connection.provider) {
case "azure": {
const psd = connection.providerSpecificData || {};
const endpoint = (psd.azureEndpoint || "").replace(/\/$/, "");
const deployment = psd.deployment || "gpt-4";
const apiVersion = psd.apiVersion || "2024-10-01-preview";
const url = `${endpoint}/openai/deployments/${deployment}/chat/completions?api-version=${apiVersion}`;
const headers = { "api-key": connection.apiKey, "Content-Type": "application/json" };
if (psd.organization) headers["OpenAI-Organization"] = psd.organization;
const res = await fetchWithConnectionProxy(url, {
method: "POST", headers,
body: JSON.stringify({ messages: [{ role: "user", content: "test" }], max_completion_tokens: 1 }),
}, effectiveProxy);
const valid = res.status !== 401 && res.status !== 403;
return { valid, error: valid ? null : "Invalid API key or Azure configuration" };
}
case "openai": { case "openai": {
const res = await fetchWithConnectionProxy("https://api.openai.com/v1/models", { headers: { Authorization: `Bearer ${connection.apiKey}` } }, effectiveProxy); const res = await fetchWithConnectionProxy("https://api.openai.com/v1/models", { headers: { Authorization: `Bearer ${connection.apiKey}` } }, effectiveProxy);
return { valid: res.ok, error: res.ok ? null : "Invalid API key" }; return { valid: res.ok, error: res.ok ? null : "Invalid API key" };

View File

@@ -114,7 +114,7 @@ export async function POST(request) {
return NextResponse.json({ error: "Name is required" }, { status: 400 }); return NextResponse.json({ error: "Name is required" }, { status: 400 });
} }
let providerSpecificData = null; let providerSpecificData = body.providerSpecificData || null;
if (isOpenAICompatibleProvider(provider)) { if (isOpenAICompatibleProvider(provider)) {
const node = await getProviderNodeById(provider); const node = await getProviderNodeById(provider);