feat: add Azure OpenAI provider support

This commit is contained in:
decolua
2026-04-24 10:04:59 +07:00
parent 5abc9e5c74
commit 65f11a603e
9 changed files with 236 additions and 6 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ export async function POST(request) {
return NextResponse.json({ error: "Name is required" }, { status: 400 });
}
let providerSpecificData = null;
let providerSpecificData = body.providerSpecificData || null;
if (isOpenAICompatibleProvider(provider)) {
const node = await getProviderNodeById(provider);