qwenproxy-cli 1.0.0 → 1.0.2

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.
Files changed (109) hide show
  1. package/LICENSE +14 -14
  2. package/README.md +906 -906
  3. package/bin/qwenproxy.js +5 -1
  4. package/package.json +77 -78
  5. package/src/api/error-classifier.ts +159 -159
  6. package/src/api/error-helpers.ts +118 -118
  7. package/src/api/models.ts +261 -261
  8. package/src/api/server.ts +860 -859
  9. package/src/cache/memory-cache.ts +385 -385
  10. package/src/clean-cache.ts +204 -204
  11. package/src/core/account-concurrency.ts +671 -671
  12. package/src/core/account-manager.ts +301 -297
  13. package/src/core/account-priority.ts +163 -163
  14. package/src/core/accounts.ts +186 -186
  15. package/src/core/config.ts +383 -383
  16. package/src/core/crypto-utils.ts +79 -79
  17. package/src/core/database.ts +276 -276
  18. package/src/core/errors.ts +118 -118
  19. package/src/core/logger.ts +269 -269
  20. package/src/core/memory-usage.ts +84 -84
  21. package/src/core/metrics.ts +291 -291
  22. package/src/core/model-alias.ts +77 -77
  23. package/src/core/model-registry.ts +544 -544
  24. package/src/core/mutex.ts +119 -119
  25. package/src/core/paths.ts +199 -199
  26. package/src/core/prompt-limits.ts +214 -214
  27. package/src/core/reasoning-effort.ts +102 -102
  28. package/src/core/stream-registry.ts +96 -96
  29. package/src/core/waf-isolation.ts +117 -117
  30. package/src/core/watchdog.ts +195 -195
  31. package/src/delete-chats.ts +23 -23
  32. package/src/index.ts +65 -64
  33. package/src/login.ts +147 -147
  34. package/src/reset-cooldowns.ts +11 -11
  35. package/src/routes/anthropic/index.ts +355 -355
  36. package/src/routes/anthropic/translate.ts +522 -522
  37. package/src/routes/anthropic/types.ts +154 -154
  38. package/src/routes/anthropic/validation.ts +144 -144
  39. package/src/routes/chat/account.ts +1817 -1817
  40. package/src/routes/chat/context.ts +241 -241
  41. package/src/routes/chat/errors.ts +85 -85
  42. package/src/routes/chat/helpers.ts +268 -268
  43. package/src/routes/chat/index.ts +618 -618
  44. package/src/routes/chat/media.ts +285 -285
  45. package/src/routes/chat/retry-policy.ts +754 -754
  46. package/src/routes/chat/stop.ts +98 -98
  47. package/src/routes/chat/streaming.ts +2710 -2710
  48. package/src/routes/chat/validation.ts +526 -526
  49. package/src/routes/chat.ts +2 -2
  50. package/src/routes/completions.ts +290 -290
  51. package/src/routes/images.ts +139 -139
  52. package/src/routes/responses/adapter.ts +503 -503
  53. package/src/routes/responses/index.ts +405 -405
  54. package/src/routes/responses/state.ts +230 -230
  55. package/src/routes/responses/streaming.ts +528 -528
  56. package/src/routes/responses/types.ts +285 -285
  57. package/src/routes/responses/validation.ts +202 -202
  58. package/src/routes/upload.ts +731 -731
  59. package/src/routes/videos.ts +214 -214
  60. package/src/services/auth-playwright.ts +173 -173
  61. package/src/services/captcha-coordinator.ts +161 -161
  62. package/src/services/captcha-solver.ts +553 -553
  63. package/src/services/chat-cleanup.ts +80 -80
  64. package/src/services/context-meter.ts +317 -317
  65. package/src/services/fingerprint.ts +242 -242
  66. package/src/services/human-behavior.ts +173 -173
  67. package/src/services/media-generation.ts +1748 -1748
  68. package/src/services/playwright.ts +2878 -2800
  69. package/src/services/qwen-chat-pool.ts +345 -345
  70. package/src/services/qwen-errors.ts +133 -133
  71. package/src/services/qwen-headers.ts +79 -79
  72. package/src/services/qwen-thread-state.ts +393 -393
  73. package/src/services/qwen-url.ts +19 -19
  74. package/src/services/qwen.ts +3126 -3126
  75. package/src/services/session-keeper.ts +88 -88
  76. package/src/services/token-estimation-metrics.ts +118 -118
  77. package/src/sync/claude-code.ts +75 -75
  78. package/src/sync/codex.ts +123 -123
  79. package/src/sync/index.ts +362 -362
  80. package/src/sync/omp.ts +105 -105
  81. package/src/sync/opencode.ts +214 -214
  82. package/src/sync/types.ts +53 -53
  83. package/src/sync/utils.ts +27 -27
  84. package/src/sync-clients.ts +189 -189
  85. package/src/tools/instructions.ts +137 -137
  86. package/src/tools/manifest.ts +81 -81
  87. package/src/tools/parser.ts +2989 -2989
  88. package/src/tools/toolcall-tags.ts +142 -142
  89. package/src/tui/app.ts +259 -264
  90. package/src/tui/index.ts +61 -61
  91. package/src/tui/markdown.ts +258 -258
  92. package/src/tui/proxy-client.ts +331 -326
  93. package/src/tui/screen.ts +294 -278
  94. package/src/tui/server-manager.ts +270 -270
  95. package/src/tui/theme.ts +432 -432
  96. package/src/tui/types.ts +33 -33
  97. package/src/tui/views/accounts-view.ts +656 -656
  98. package/src/tui/views/chat-view.ts +1018 -823
  99. package/src/tui/views/logs-view.ts +479 -413
  100. package/src/tui/views/status-view.ts +204 -204
  101. package/src/tui/views/storage-view.ts +304 -291
  102. package/src/tui/views/sync-view.ts +409 -409
  103. package/src/types/ali-oss.d.ts +32 -32
  104. package/src/update-cli.ts +121 -0
  105. package/src/utils/context-truncation.ts +84 -84
  106. package/src/utils/json.ts +380 -380
  107. package/src/utils/session-id.ts +37 -37
  108. package/src/utils/tool-call-guard.ts +84 -84
  109. package/src/utils/types.ts +109 -109
@@ -1,270 +1,270 @@
1
- /**
2
- * QwenProxy TUI - In-Process Server Manager ("Tudo Junto Uma Coisa Só")
3
- * Starts and manages the Hono + Playwright proxy server directly within the TUI process.
4
- */
5
-
6
- import { config } from "../core/config.ts";
7
- import { startServer, stopServer } from "../api/server.ts";
8
- import { stripAnsi } from "./theme.ts";
9
- export type ServerLifecycleState = "offline" | "warming" | "online" | "error";
10
-
11
- export interface ServerLogEntry {
12
- time: string;
13
- level: "INFO" | "WARN" | "ERROR";
14
- message: string;
15
- }
16
-
17
- export class ServerManager {
18
- private static instance: ServerManager | null = null;
19
-
20
- private state: ServerLifecycleState = "offline";
21
- private lastError: string | null = null;
22
- private logEntries: ServerLogEntry[] = [];
23
- private logBuffer: string[] = [];
24
- private originalLog = console.log;
25
- private originalInfo = console.info;
26
- private originalDebug = console.debug;
27
- private originalWarn = console.warn;
28
- private originalError = console.error;
29
- private originalStdoutWrite = process.stdout.write.bind(process.stdout);
30
- private originalStderrWrite = process.stderr.write.bind(process.stderr);
31
- private intercepted = false;
32
- private isTuiRendering = false;
33
- private startPromise: Promise<void> | null = null;
34
-
35
- public static getInstance(): ServerManager {
36
- if (!ServerManager.instance) {
37
- ServerManager.instance = new ServerManager();
38
- }
39
- return ServerManager.instance;
40
- }
41
-
42
- public getState(): ServerLifecycleState {
43
- return this.state;
44
- }
45
-
46
- public withTuiRendering<T>(fn: () => T): T {
47
- this.isTuiRendering = true;
48
- try {
49
- return fn();
50
- } finally {
51
- this.isTuiRendering = false;
52
- }
53
- }
54
-
55
- public getRawStdoutWrite(): (chunk: string | Uint8Array) => boolean {
56
- return this.originalStdoutWrite;
57
- }
58
-
59
- public getLastError(): string | null {
60
- return this.lastError;
61
- }
62
-
63
- public getRecentLogs(max = 12): string[] {
64
- return this.logBuffer.slice(-max);
65
- }
66
-
67
- public getLogEntries(filter: "all" | "warn" | "error" = "all"): ServerLogEntry[] {
68
- if (filter === "error") {
69
- return this.logEntries.filter((e) => e.level === "ERROR");
70
- }
71
- if (filter === "warn") {
72
- return this.logEntries.filter((e) => e.level === "WARN" || e.level === "ERROR");
73
- }
74
- return this.logEntries;
75
- }
76
-
77
- public clearLogs(): void {
78
- this.logEntries = [];
79
- this.logBuffer = [];
80
- }
81
-
82
- private appendLog(level: "INFO" | "WARN" | "ERROR", text: string): void {
83
- if (!text) return;
84
- const clean = stripAnsi(text).trim();
85
- if (!clean || clean.length === 0) return;
86
-
87
- const time = new Date().toLocaleTimeString("pt-BR", {
88
- hour: "2-digit",
89
- minute: "2-digit",
90
- second: "2-digit",
91
- });
92
-
93
- const lines = clean.split(/\r?\n/);
94
- for (const raw of lines) {
95
- let line = raw.trim();
96
- if (!line) continue;
97
-
98
- // Filter out raw ASCII box frames (like +-----+ or empty row | |)
99
- if (/^[+\-=#]{5,}$/.test(line)) continue;
100
- if (/^\|\s*\|$/.test(line)) continue;
101
-
102
- // If line is an ASCII box row like "| Endpoint http://... |", extract the text
103
- if (line.startsWith("|") && line.endsWith("|")) {
104
- line = line.slice(1, -1).trim();
105
- }
106
-
107
- if (!line) continue;
108
-
109
- // Prevent identical consecutive duplicate logs in the same second
110
- const last = this.logEntries[this.logEntries.length - 1];
111
- if (last && last.time === time && last.level === level && last.message === line) {
112
- continue;
113
- }
114
-
115
- this.logEntries.push({ time, level, message: line });
116
- if (this.logEntries.length > 500) {
117
- this.logEntries.shift();
118
- }
119
-
120
- const levelTag = level === "ERROR" ? "[ERR]" : level === "WARN" ? "[WARN]" : "";
121
- const formatted = `[${time}] ${levelTag ? levelTag + " " : ""}${line}`;
122
- this.logBuffer.push(formatted);
123
- if (this.logBuffer.length > 500) {
124
- this.logBuffer.shift();
125
- }
126
- }
127
- }
128
-
129
- public interceptLogs(): void {
130
- if (this.intercepted) return;
131
- this.intercepted = true;
132
-
133
- console.log = (...args: any[]) => {
134
- this.appendLog(
135
- "INFO",
136
- args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
137
- );
138
- };
139
-
140
- console.info = (...args: any[]) => {
141
- this.appendLog(
142
- "INFO",
143
- args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
144
- );
145
- };
146
-
147
- console.debug = (...args: any[]) => {
148
- this.appendLog(
149
- "INFO",
150
- args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
151
- );
152
- };
153
-
154
- console.warn = (...args: any[]) => {
155
- this.appendLog(
156
- "WARN",
157
- args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
158
- );
159
- };
160
-
161
- console.error = (...args: any[]) => {
162
- this.appendLog(
163
- "ERROR",
164
- args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
165
- );
166
- };
167
-
168
- // Sandbox direct process.stdout.write calls (Playwright, Hono, etc.)
169
- process.stdout.write = ((chunk: any, encoding?: any, cb?: any) => {
170
- if (this.isTuiRendering) {
171
- return this.originalStdoutWrite(chunk, encoding, cb);
172
- }
173
- const str = typeof chunk === "string" ? chunk : chunk?.toString(encoding);
174
- // Terminal escape sequences (OSC 52 clipboard, cursor codes) bypass log capture
175
- if (typeof str === "string" && (str.startsWith("\x1b]") || str.startsWith("\x1b[") || str.startsWith("\x1b"))) {
176
- return this.originalStdoutWrite(chunk, encoding, cb);
177
- }
178
- this.appendLog("INFO", str);
179
- if (typeof cb === "function") cb();
180
- return true;
181
- }) as any;
182
-
183
- // Sandbox direct process.stderr.write calls
184
- process.stderr.write = ((chunk: any, encoding?: any, cb?: any) => {
185
- const str = typeof chunk === "string" ? chunk : chunk?.toString(encoding);
186
- this.appendLog("ERROR", str);
187
- if (typeof cb === "function") cb();
188
- return true;
189
- }) as any;
190
- }
191
-
192
- public restoreLogs(): void {
193
- if (!this.intercepted) return;
194
- console.log = this.originalLog;
195
- console.info = this.originalInfo;
196
- console.debug = this.originalDebug;
197
- console.warn = this.originalWarn;
198
- console.error = this.originalError;
199
- process.stdout.write = this.originalStdoutWrite;
200
- process.stderr.write = this.originalStderrWrite;
201
- this.intercepted = false;
202
- }
203
-
204
- /**
205
- * Checks if proxy is already running on port 7936, or boots it up in-process.
206
- */
207
- public async ensureStarted(): Promise<void> {
208
- if (this.state === "online") return;
209
- if (this.startPromise) return this.startPromise;
210
-
211
- const port = config.server?.port || 7936;
212
- const host = config.server?.host || "127.0.0.1";
213
- const cleanHost = host === "0.0.0.0" ? "127.0.0.1" : host;
214
-
215
- // 1. Probe if already online
216
- try {
217
- const controller = new AbortController();
218
- const timeout = setTimeout(() => controller.abort(), 600);
219
- const resp = await fetch(`http://${cleanHost}:${port}/health`, {
220
- signal: controller.signal,
221
- });
222
- clearTimeout(timeout);
223
- if (resp.ok) {
224
- this.state = "online";
225
- this.appendLog(
226
- "INFO",
227
- `QwenProxy já está em execução na porta ${port}. Conectado com sucesso!`,
228
- );
229
- return;
230
- }
231
- } catch {}
232
-
233
- // 2. Start in-process
234
- this.state = "warming";
235
- this.appendLog(
236
- "INFO",
237
- `Iniciando servidor QwenProxy na porta ${port} e aquecendo Playwright...`,
238
- );
239
-
240
- this.interceptLogs();
241
-
242
- this.startPromise = (async () => {
243
- try {
244
- await startServer({ installSignalHandlers: false });
245
- this.state = "online";
246
- this.appendLog(
247
- "INFO",
248
- `✓ Servidor QwenProxy pronto e online em http://${cleanHost}:${port}/v1`,
249
- );
250
- } catch (err: any) {
251
- this.state = "error";
252
- this.lastError = err?.message || String(err);
253
- this.appendLog(
254
- "ERROR",
255
- `✗ Falha ao iniciar servidor: ${this.lastError}`,
256
- );
257
- } finally {
258
- this.startPromise = null;
259
- }
260
- })();
261
- }
262
-
263
- public async stop(): Promise<void> {
264
- this.restoreLogs();
265
- try {
266
- await stopServer();
267
- this.state = "offline";
268
- } catch {}
269
- }
270
- }
1
+ /**
2
+ * QwenProxy TUI - In-Process Server Manager ("Tudo Junto Uma Coisa Só")
3
+ * Starts and manages the Hono + Playwright proxy server directly within the TUI process.
4
+ */
5
+
6
+ import { config } from "../core/config.ts";
7
+ import { startServer, stopServer } from "../api/server.ts";
8
+ import { stripAnsi } from "./theme.ts";
9
+ export type ServerLifecycleState = "offline" | "warming" | "online" | "error";
10
+
11
+ export interface ServerLogEntry {
12
+ time: string;
13
+ level: "INFO" | "WARN" | "ERROR";
14
+ message: string;
15
+ }
16
+
17
+ export class ServerManager {
18
+ private static instance: ServerManager | null = null;
19
+
20
+ private state: ServerLifecycleState = "offline";
21
+ private lastError: string | null = null;
22
+ private logEntries: ServerLogEntry[] = [];
23
+ private logBuffer: string[] = [];
24
+ private originalLog = console.log;
25
+ private originalInfo = console.info;
26
+ private originalDebug = console.debug;
27
+ private originalWarn = console.warn;
28
+ private originalError = console.error;
29
+ private originalStdoutWrite = process.stdout.write.bind(process.stdout);
30
+ private originalStderrWrite = process.stderr.write.bind(process.stderr);
31
+ private intercepted = false;
32
+ private isTuiRendering = false;
33
+ private startPromise: Promise<void> | null = null;
34
+
35
+ public static getInstance(): ServerManager {
36
+ if (!ServerManager.instance) {
37
+ ServerManager.instance = new ServerManager();
38
+ }
39
+ return ServerManager.instance;
40
+ }
41
+
42
+ public getState(): ServerLifecycleState {
43
+ return this.state;
44
+ }
45
+
46
+ public withTuiRendering<T>(fn: () => T): T {
47
+ this.isTuiRendering = true;
48
+ try {
49
+ return fn();
50
+ } finally {
51
+ this.isTuiRendering = false;
52
+ }
53
+ }
54
+
55
+ public getRawStdoutWrite(): (chunk: string | Uint8Array) => boolean {
56
+ return this.originalStdoutWrite;
57
+ }
58
+
59
+ public getLastError(): string | null {
60
+ return this.lastError;
61
+ }
62
+
63
+ public getRecentLogs(max = 12): string[] {
64
+ return this.logBuffer.slice(-max);
65
+ }
66
+
67
+ public getLogEntries(filter: "all" | "warn" | "error" = "all"): ServerLogEntry[] {
68
+ if (filter === "error") {
69
+ return this.logEntries.filter((e) => e.level === "ERROR");
70
+ }
71
+ if (filter === "warn") {
72
+ return this.logEntries.filter((e) => e.level === "WARN" || e.level === "ERROR");
73
+ }
74
+ return this.logEntries;
75
+ }
76
+
77
+ public clearLogs(): void {
78
+ this.logEntries = [];
79
+ this.logBuffer = [];
80
+ }
81
+
82
+ private appendLog(level: "INFO" | "WARN" | "ERROR", text: string): void {
83
+ if (!text) return;
84
+ const clean = stripAnsi(text).trim();
85
+ if (!clean || clean.length === 0) return;
86
+
87
+ const time = new Date().toLocaleTimeString("pt-BR", {
88
+ hour: "2-digit",
89
+ minute: "2-digit",
90
+ second: "2-digit",
91
+ });
92
+
93
+ const lines = clean.split(/\r?\n/);
94
+ for (const raw of lines) {
95
+ let line = raw.trim();
96
+ if (!line) continue;
97
+
98
+ // Filter out raw ASCII box frames (like +-----+ or empty row | |)
99
+ if (/^[+\-=#]{5,}$/.test(line)) continue;
100
+ if (/^\|\s*\|$/.test(line)) continue;
101
+
102
+ // If line is an ASCII box row like "| Endpoint http://... |", extract the text
103
+ if (line.startsWith("|") && line.endsWith("|")) {
104
+ line = line.slice(1, -1).trim();
105
+ }
106
+
107
+ if (!line) continue;
108
+
109
+ // Prevent identical consecutive duplicate logs in the same second
110
+ const last = this.logEntries[this.logEntries.length - 1];
111
+ if (last && last.time === time && last.level === level && last.message === line) {
112
+ continue;
113
+ }
114
+
115
+ this.logEntries.push({ time, level, message: line });
116
+ if (this.logEntries.length > 500) {
117
+ this.logEntries.shift();
118
+ }
119
+
120
+ const levelTag = level === "ERROR" ? "[ERR]" : level === "WARN" ? "[WARN]" : "";
121
+ const formatted = `[${time}] ${levelTag ? levelTag + " " : ""}${line}`;
122
+ this.logBuffer.push(formatted);
123
+ if (this.logBuffer.length > 500) {
124
+ this.logBuffer.shift();
125
+ }
126
+ }
127
+ }
128
+
129
+ public interceptLogs(): void {
130
+ if (this.intercepted) return;
131
+ this.intercepted = true;
132
+
133
+ console.log = (...args: any[]) => {
134
+ this.appendLog(
135
+ "INFO",
136
+ args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
137
+ );
138
+ };
139
+
140
+ console.info = (...args: any[]) => {
141
+ this.appendLog(
142
+ "INFO",
143
+ args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
144
+ );
145
+ };
146
+
147
+ console.debug = (...args: any[]) => {
148
+ this.appendLog(
149
+ "INFO",
150
+ args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
151
+ );
152
+ };
153
+
154
+ console.warn = (...args: any[]) => {
155
+ this.appendLog(
156
+ "WARN",
157
+ args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
158
+ );
159
+ };
160
+
161
+ console.error = (...args: any[]) => {
162
+ this.appendLog(
163
+ "ERROR",
164
+ args.map((a) => (typeof a === "string" ? a : JSON.stringify(a))).join(" "),
165
+ );
166
+ };
167
+
168
+ // Sandbox direct process.stdout.write calls (Playwright, Hono, etc.)
169
+ process.stdout.write = ((chunk: any, encoding?: any, cb?: any) => {
170
+ if (this.isTuiRendering) {
171
+ return this.originalStdoutWrite(chunk, encoding, cb);
172
+ }
173
+ const str = typeof chunk === "string" ? chunk : chunk?.toString(encoding);
174
+ // Terminal escape sequences (OSC 52 clipboard, cursor codes) bypass log capture
175
+ if (typeof str === "string" && (str.startsWith("\x1b]") || str.startsWith("\x1b[") || str.startsWith("\x1b"))) {
176
+ return this.originalStdoutWrite(chunk, encoding, cb);
177
+ }
178
+ this.appendLog("INFO", str);
179
+ if (typeof cb === "function") cb();
180
+ return true;
181
+ }) as any;
182
+
183
+ // Sandbox direct process.stderr.write calls
184
+ process.stderr.write = ((chunk: any, encoding?: any, cb?: any) => {
185
+ const str = typeof chunk === "string" ? chunk : chunk?.toString(encoding);
186
+ this.appendLog("ERROR", str);
187
+ if (typeof cb === "function") cb();
188
+ return true;
189
+ }) as any;
190
+ }
191
+
192
+ public restoreLogs(): void {
193
+ if (!this.intercepted) return;
194
+ console.log = this.originalLog;
195
+ console.info = this.originalInfo;
196
+ console.debug = this.originalDebug;
197
+ console.warn = this.originalWarn;
198
+ console.error = this.originalError;
199
+ process.stdout.write = this.originalStdoutWrite;
200
+ process.stderr.write = this.originalStderrWrite;
201
+ this.intercepted = false;
202
+ }
203
+
204
+ /**
205
+ * Checks if proxy is already running on port 7936, or boots it up in-process.
206
+ */
207
+ public async ensureStarted(): Promise<void> {
208
+ if (this.state === "online") return;
209
+ if (this.startPromise) return this.startPromise;
210
+
211
+ const port = config.server?.port || 7936;
212
+ const host = config.server?.host || "127.0.0.1";
213
+ const cleanHost = host === "0.0.0.0" ? "127.0.0.1" : host;
214
+
215
+ // 1. Probe if already online
216
+ try {
217
+ const controller = new AbortController();
218
+ const timeout = setTimeout(() => controller.abort(), 600);
219
+ const resp = await fetch(`http://${cleanHost}:${port}/health`, {
220
+ signal: controller.signal,
221
+ });
222
+ clearTimeout(timeout);
223
+ if (resp.ok) {
224
+ this.state = "online";
225
+ this.appendLog(
226
+ "INFO",
227
+ `QwenProxy já está em execução na porta ${port}. Conectado com sucesso!`,
228
+ );
229
+ return;
230
+ }
231
+ } catch {}
232
+
233
+ // 2. Start in-process
234
+ this.state = "warming";
235
+ this.appendLog(
236
+ "INFO",
237
+ `Iniciando servidor QwenProxy na porta ${port} e aquecendo Playwright...`,
238
+ );
239
+
240
+ this.interceptLogs();
241
+
242
+ this.startPromise = (async () => {
243
+ try {
244
+ await startServer({ installSignalHandlers: false });
245
+ this.state = "online";
246
+ this.appendLog(
247
+ "INFO",
248
+ `✓ Servidor QwenProxy pronto e online em http://${cleanHost}:${port}/v1`,
249
+ );
250
+ } catch (err: any) {
251
+ this.state = "error";
252
+ this.lastError = err?.message || String(err);
253
+ this.appendLog(
254
+ "ERROR",
255
+ `✗ Falha ao iniciar servidor: ${this.lastError}`,
256
+ );
257
+ } finally {
258
+ this.startPromise = null;
259
+ }
260
+ })();
261
+ }
262
+
263
+ public async stop(): Promise<void> {
264
+ this.restoreLogs();
265
+ try {
266
+ await stopServer();
267
+ this.state = "offline";
268
+ } catch {}
269
+ }
270
+ }