@pedrofariasx/qwenproxy 1.6.1 → 1.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pedrofariasx/qwenproxy",
3
- "version": "1.6.1",
3
+ "version": "1.6.3",
4
4
  "description": "Local OpenAI-compatible proxy API that routes requests to Qwen (chat.qwen.ai) via Playwright browser automation.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -827,9 +827,9 @@ async function _getQwenHeadersInternal(forceNew = false, accountId?: string): Pr
827
827
 
828
828
  await page.focus(inputSelector);
829
829
  await page.fill(inputSelector, '');
830
- await page.type(inputSelector, 'a', { delay: 20 });
830
+ await page.type(inputSelector, 'a', { delay: 100 });
831
831
  console.log(`[Playwright] Typed char for ${cacheKey}, waiting for UI to update...`);
832
- await sleep(800);
832
+ await sleep(2000);
833
833
 
834
834
  const selectors = [
835
835
  '.message-input-right-button-send .send-button',