fix: call local proxy for Qwen streaming to avoid CORS

This commit is contained in:
Gemini AI
2025-12-29 01:08:04 +04:00
Unverified
parent b21ef566b7
commit ed3cadf84e

View File

@@ -1039,23 +1039,22 @@ Perform analysis based on provided instructions.`,
})) }))
]; ];
// Get authorization headers // Call our local proxy to avoid CORS
const headers = await this.getRequestHeaders(); const headers = await this.getRequestHeaders();
const endpoint = this.getEffectiveEndpoint(); const baseUrl = this.getEffectiveEndpoint();
const url = endpoint.endsWith("/chat/completions") const url = `${this.oauthBaseUrl}/chat`;
? endpoint
: `${endpoint}/chat/completions`;
console.log("[QwenOAuth] Stream request:", { url, model: model || this.getAvailableModels()[0], hasAuth: !!headers.Authorization }); console.log("[QwenOAuth] Stream request (via proxy):", { url, model: model || this.getAvailableModels()[0], hasAuth: !!headers.Authorization });
const response = await fetch(url, { const response = await fetch(url, {
method: "POST", method: "POST",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
...headers, Authorization: headers.Authorization || "",
}, },
signal: options.signal, signal: options.signal,
body: JSON.stringify({ body: JSON.stringify({
endpoint: baseUrl,
model: model || this.getAvailableModels()[0], model: model || this.getAvailableModels()[0],
messages, messages,
stream: true, stream: true,
@@ -1064,7 +1063,7 @@ Perform analysis based on provided instructions.`,
if (!response.ok) { if (!response.ok) {
const errorText = await response.text(); const errorText = await response.text();
console.error("[QwenOAuth] Stream request failed:", response.status, errorText); console.error("[QwenOAuth] Stream proxy request failed:", response.status, errorText);
throw new Error(`Stream request failed (${response.status}): ${errorText.slice(0, 200)}`); throw new Error(`Stream request failed (${response.status}): ${errorText.slice(0, 200)}`);
} }