-
Notifications
You must be signed in to change notification settings - Fork 502
Expand file tree
/
Copy pathtest.html
More file actions
565 lines (489 loc) · 22.5 KB
/
test.html
File metadata and controls
565 lines (489 loc) · 22.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flow2API 模型测试</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0f1117; color: #e1e1e6; min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
h1 { text-align: center; margin-bottom: 8px; font-size: 24px; color: #7c8aff; }
.subtitle { text-align: center; color: #666; margin-bottom: 24px; font-size: 14px; }
.config-bar {
display: flex; gap: 12px; margin-bottom: 20px; align-items: center;
background: #1a1b26; padding: 12px 16px; border-radius: 10px; border: 1px solid #2a2b3a;
}
.config-bar label { font-size: 13px; color: #888; white-space: nowrap; }
.config-bar input { flex: 1; background: #0f1117; border: 1px solid #2a2b3a; color: #e1e1e6; padding: 8px 12px; border-radius: 6px; font-size: 14px; }
.config-note { margin-bottom: 20px; font-size: 12px; color: #7f8498; }
.main-layout { display: flex; gap: 20px; }
.sidebar { width: 280px; flex-shrink: 0; }
.content { flex: 1; min-width: 0; }
.model-section { margin-bottom: 16px; }
.section-title {
font-size: 13px; font-weight: 600; color: #7c8aff; padding: 8px 12px;
background: #1a1b26; border-radius: 8px 8px 0 0; border: 1px solid #2a2b3a; border-bottom: none;
cursor: pointer; user-select: none; display: flex; justify-content: space-between; align-items: center;
}
.section-title:hover { background: #1e1f2e; }
.section-title .arrow { transition: transform 0.2s; }
.section-title.collapsed .arrow { transform: rotate(-90deg); }
.model-list {
background: #1a1b26; border: 1px solid #2a2b3a; border-radius: 0 0 8px 8px;
max-height: 300px; overflow-y: auto;
}
.model-list.hidden { display: none; }
.model-item {
padding: 8px 12px; font-size: 13px; cursor: pointer; border-bottom: 1px solid #1e1f2e;
display: flex; justify-content: space-between; align-items: center;
}
.model-item:last-child { border-bottom: none; }
.model-item:hover { background: #1e1f2e; }
.model-item.active { background: #2a2b5a; color: #7c8aff; }
.model-tag {
font-size: 10px; padding: 2px 6px; border-radius: 4px; font-weight: 500;
}
.tag-image { background: #1a3a2a; color: #4ade80; }
.tag-video { background: #3a2a1a; color: #fb923c; }
.gen-panel {
background: #1a1b26; border: 1px solid #2a2b3a; border-radius: 10px; padding: 20px;
}
.gen-panel h3 { font-size: 16px; margin-bottom: 4px; }
.gen-panel .model-info { font-size: 12px; color: #666; margin-bottom: 16px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; color: #888; margin-bottom: 6px; }
.form-group textarea {
width: 100%; background: #0f1117; border: 1px solid #2a2b3a; color: #e1e1e6;
padding: 10px 12px; border-radius: 8px; font-size: 14px; resize: vertical; min-height: 80px;
font-family: inherit;
}
.form-group textarea:focus { outline: none; border-color: #7c8aff; }
.image-upload-area {
border: 2px dashed #2a2b3a; border-radius: 8px; padding: 20px; text-align: center;
cursor: pointer; transition: border-color 0.2s; position: relative;
}
.image-upload-area:hover { border-color: #7c8aff; }
.image-upload-area.has-images { padding: 10px; }
.image-upload-hint { color: #555; font-size: 13px; }
.image-preview-list { display: flex; gap: 8px; flex-wrap: wrap; }
.image-preview-item {
position: relative; width: 80px; height: 80px; border-radius: 6px; overflow: hidden;
}
.image-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.image-preview-item .remove-btn {
position: absolute; top: 2px; right: 2px; width: 20px; height: 20px;
background: rgba(0,0,0,0.7); color: #fff; border: none; border-radius: 50%;
cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center;
}
.btn-generate {
width: 100%; padding: 12px; background: #7c8aff; color: #fff; border: none;
border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer;
transition: background 0.2s;
}
.btn-generate:hover { background: #6b79ee; }
.btn-generate:disabled { background: #3a3b5a; cursor: not-allowed; }
.output-panel {
background: #1a1b26; border: 1px solid #2a2b3a; border-radius: 10px; padding: 20px; margin-top: 16px;
}
.output-panel h3 { font-size: 15px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-idle { background: #555; }
.status-running { background: #facc15; animation: pulse 1s infinite; }
.status-done { background: #4ade80; }
.status-error { background: #f87171; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.output-log {
background: #0f1117; border-radius: 8px; padding: 12px; font-size: 13px;
line-height: 1.6; max-height: 200px; overflow-y: auto; white-space: pre-wrap;
word-break: break-all; color: #aaa;
}
.output-result { margin-top: 12px; }
.output-result img { max-width: 100%; border-radius: 8px; margin-top: 8px; }
.output-result video { max-width: 100%; border-radius: 8px; margin-top: 8px; }
.model-list::-webkit-scrollbar, .output-log::-webkit-scrollbar { width: 4px; }
.model-list::-webkit-scrollbar-thumb, .output-log::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }
@media (max-width: 768px) {
.main-layout { flex-direction: column; }
.sidebar { width: 100%; }
.config-bar { flex-wrap: wrap; }
}
</style>
</head>
<body>
<div class="container">
<h1>🧪 Flow2API 模型测试</h1>
<p class="subtitle">选择模型,输入提示词,测试生成效果</p>
<div class="config-bar">
<label>API Key:</label>
<input type="password" id="apiKey" placeholder="输入 API Key">
<label>地址:</label>
<input type="text" id="baseUrl" placeholder="http://localhost:8000" />
</div>
<p class="config-note">未填写 API Key 或模型列表加载失败时,会回退到内置候选模型;实际生成前仍需填写有效 API Key。</p>
<div class="main-layout">
<div class="sidebar" id="modelSidebar"></div>
<div class="content">
<div class="gen-panel">
<h3 id="selectedModelName">请选择模型</h3>
<div class="model-info" id="selectedModelInfo">从左侧列表选择一个模型开始测试</div>
<div class="form-group">
<label>提示词 (Prompt)</label>
<textarea id="promptInput" placeholder="描述你想生成的内容...">一只可爱的橘猫趴在窗台上晒太阳,窗外是樱花盛开的春天</textarea>
</div>
<div class="form-group" id="imageUploadGroup" style="display:none;">
<label>上传图片 <span id="imageLimit" style="color:#666;font-size:12px;"></span></label>
<div class="image-upload-area" id="imageUploadArea">
<div class="image-upload-hint" id="imageHint">点击或拖拽上传图片</div>
<div class="image-preview-list" id="imagePreviewList"></div>
</div>
<input type="file" id="imageFileInput" accept="image/*" multiple style="display:none;">
</div>
<button class="btn-generate" id="btnGenerate" disabled>选择模型后开始生成</button>
</div>
<div class="output-panel">
<h3><span class="status-dot status-idle" id="statusDot"></span> <span id="statusText">等待中</span></h3>
<div class="output-log" id="outputLog">准备就绪,选择模型并点击生成按钮开始...</div>
<div class="output-result" id="outputResult"></div>
</div>
</div>
</div>
</div>
<script>
const STATE = { selectedModel: null, modelConfig: null, images: [], generating: false };
</script>
<script>
// Model categories for sidebar
const MODEL_CATEGORIES = {
"Gemini 3.1 Flash 图片": { filter: m => m.startsWith("gemini-3.1-flash-image") },
"Gemini 3.0 Pro 图片": { filter: m => m.startsWith("gemini-3.0-pro-image") },
"Gemini 2.5 Flash 图片": { filter: m => m.startsWith("gemini-2.5-flash-image") },
"Imagen 4.0 图片": { filter: m => m.startsWith("imagen-4.0") },
"Veo 3.1 文生视频 (T2V)": { filter: m => m.startsWith("veo_3_1_t2v") && !m.includes("4k") && !m.includes("1080p") },
"Veo 3.1 图生视频 (I2V)": { filter: m => m.startsWith("veo_3_1_i2v") && !m.includes("4k") && !m.includes("1080p") },
"Veo 3.1 多图视频 (R2V)": { filter: m => m.startsWith("veo_3_1_r2v") && !m.includes("4k") && !m.includes("1080p") },
"Veo 2.x 视频": { filter: m => m.startsWith("veo_2") },
"视频放大 (Upsample)": { filter: m => m.includes("4k") || m.includes("1080p") },
};
const FALLBACK_MODELS = {
"gemini-3.1-flash-image": "Image generation (alias) - aspects: landscape, portrait, square, four-three, three-four; sizes: 2k, 4k",
"gemini-3.0-pro-image": "Image generation (alias) - aspects: landscape, portrait, square, four-three, three-four; sizes: 2k, 4k",
"gemini-2.5-flash-image": "Image generation (alias) - aspects: landscape, portrait",
"imagen-4.0-generate-preview": "Image generation (alias) - aspects: landscape, portrait",
"veo_3_1_t2v_fast": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_t2v_fast_ultra": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_t2v_fast_ultra_relaxed": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_t2v": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_i2v_s_fast_fl": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_i2v_s_fast_ultra_fl": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_i2v_s_fast_ultra_relaxed": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_i2v_s": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_r2v_fast": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_r2v_fast_ultra": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_r2v_fast_ultra_relaxed": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_2_1_fast_d_15_t2v": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_2_0_t2v": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_2_1_fast_d_15_i2v": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_2_0_i2v": "Video generation (alias) - supports landscape/portrait via generationConfig",
"veo_3_1_upsampler_1080p": "Video upsample - 1080p",
"veo_3_1_upsampler_4k": "Video upsample - 4k",
};
let ALL_MODELS = {};
function applyFallbackModels(reason) {
console.warn("使用内置候选模型列表:", reason);
ALL_MODELS = { ...FALLBACK_MODELS };
renderSidebar();
}
async function loadModels() {
const baseUrl = (document.getElementById("baseUrl").value || "").trim();
const apiKey = (document.getElementById("apiKey").value || "").trim();
if (!baseUrl || !apiKey) {
applyFallbackModels("missing_base_url_or_api_key");
return;
}
try {
const resp = await fetch(`${baseUrl}/v1/models`, {
headers: { "Authorization": `Bearer ${apiKey}` }
});
if (!resp.ok) {
throw new Error(`HTTP ${resp.status}`);
}
const data = await resp.json();
const items = Array.isArray(data.data) ? data.data : [];
if (!items.length) {
applyFallbackModels("empty_model_catalog");
return;
}
ALL_MODELS = {};
items.forEach(m => { ALL_MODELS[m.id] = m.description; });
renderSidebar();
} catch (e) {
console.error("加载模型失败:", e);
applyFallbackModels(e.message || "load_failed");
}
}
function renderSidebarFallback() {
applyFallbackModels("legacy_fallback");
}
function getModelType(modelId) {
if (modelId.includes("image") || modelId.startsWith("imagen")) return "image";
return "video";
}
function getModelMeta(modelId) {
// Determine supports_images, min/max from model name patterns
const isI2V = modelId.includes("i2v");
const isR2V = modelId.includes("r2v");
const isT2V = modelId.includes("t2v");
const isImage = getModelType(modelId) === "image";
if (isImage) return { type: "image", supportsImages: true, minImages: 0, maxImages: 5 };
if (isI2V) return { type: "video", supportsImages: true, minImages: 1, maxImages: 2 };
if (isR2V) return { type: "video", supportsImages: true, minImages: 0, maxImages: 3 };
return { type: "video", supportsImages: false, minImages: 0, maxImages: 0 };
}
function renderSidebar() {
const sidebar = document.getElementById("modelSidebar");
sidebar.innerHTML = "";
const modelIds = Object.keys(ALL_MODELS).sort();
if (modelIds.length === 0) {
sidebar.innerHTML = '<div class="model-section"><div class="model-list" style="border-radius:8px;"><div class="model-item" style="cursor:default;color:#888;">未获取到可用模型,请检查 API Key 或稍后重试</div></div></div>';
return;
}
for (const [catName, catDef] of Object.entries(MODEL_CATEGORIES)) {
const models = modelIds.filter(catDef.filter);
if (models.length === 0) continue;
const section = document.createElement("div");
section.className = "model-section";
const title = document.createElement("div");
title.className = "section-title";
title.innerHTML = `<span>${catName} (${models.length})</span><span class="arrow">▼</span>`;
const list = document.createElement("div");
list.className = "model-list";
models.forEach(modelId => {
const item = document.createElement("div");
item.className = "model-item";
item.dataset.model = modelId;
const type = getModelType(modelId);
const shortName = modelId.replace("gemini-3.1-flash-image-", "").replace("gemini-3.0-pro-image-", "").replace("gemini-2.5-flash-image-", "").replace("imagen-4.0-generate-preview-", "");
item.innerHTML = `<span>${shortName}</span><span class="model-tag ${type === 'image' ? 'tag-image' : 'tag-video'}">${type === 'image' ? '图片' : '视频'}</span>`;
item.onclick = () => selectModel(modelId);
list.appendChild(item);
});
title.onclick = () => {
title.classList.toggle("collapsed");
list.classList.toggle("hidden");
};
section.appendChild(title);
section.appendChild(list);
sidebar.appendChild(section);
}
}
function selectModel(modelId) {
STATE.selectedModel = modelId;
STATE.modelConfig = getModelMeta(modelId);
STATE.images = [];
// Update sidebar active state
document.querySelectorAll(".model-item").forEach(el => {
el.classList.toggle("active", el.dataset.model === modelId);
});
// Update panel
document.getElementById("selectedModelName").textContent = modelId;
document.getElementById("selectedModelInfo").textContent = ALL_MODELS[modelId] || "";
// Show/hide image upload
const uploadGroup = document.getElementById("imageUploadGroup");
const meta = STATE.modelConfig;
if (meta.supportsImages) {
uploadGroup.style.display = "block";
const limitText = meta.type === "image" ? "可选,用于图生图" : `${meta.minImages}-${meta.maxImages}张`;
document.getElementById("imageLimit").textContent = `(${limitText})`;
} else {
uploadGroup.style.display = "none";
}
// Reset image previews
document.getElementById("imagePreviewList").innerHTML = "";
document.getElementById("imageHint").style.display = "block";
// Enable button
const btn = document.getElementById("btnGenerate");
btn.disabled = false;
btn.textContent = meta.type === "image" ? "🎨 生成图片" : "🎬 生成视频";
}
// Image upload handling
const uploadArea = document.getElementById("imageUploadArea");
const fileInput = document.getElementById("imageFileInput");
uploadArea.onclick = (e) => {
if (e.target.closest(".remove-btn")) return;
fileInput.click();
};
uploadArea.ondragover = (e) => { e.preventDefault(); uploadArea.style.borderColor = "#7c8aff"; };
uploadArea.ondragleave = () => { uploadArea.style.borderColor = "#2a2b3a"; };
uploadArea.ondrop = (e) => {
e.preventDefault();
uploadArea.style.borderColor = "#2a2b3a";
handleFiles(e.dataTransfer.files);
};
fileInput.onchange = () => { handleFiles(fileInput.files); fileInput.value = ""; };
function handleFiles(files) {
const maxImages = STATE.modelConfig ? STATE.modelConfig.maxImages : 5;
for (const file of files) {
if (STATE.images.length >= maxImages) break;
if (!file.type.startsWith("image/")) continue;
const reader = new FileReader();
reader.onload = (e) => {
STATE.images.push(e.target.result);
renderImagePreviews();
};
reader.readAsDataURL(file);
}
}
function renderImagePreviews() {
const list = document.getElementById("imagePreviewList");
const hint = document.getElementById("imageHint");
list.innerHTML = "";
hint.style.display = STATE.images.length ? "none" : "block";
STATE.images.forEach((dataUrl, idx) => {
const item = document.createElement("div");
item.className = "image-preview-item";
item.innerHTML = `<img src="${dataUrl}" alt="preview"><button class="remove-btn" onclick="removeImage(${idx})">×</button>`;
list.appendChild(item);
});
}
function removeImage(idx) {
STATE.images.splice(idx, 1);
renderImagePreviews();
}
// Generation
document.getElementById("btnGenerate").onclick = generate;
async function generate() {
if (!STATE.selectedModel || STATE.generating) return;
const baseUrl = (document.getElementById("baseUrl").value || "").trim();
const apiKey = (document.getElementById("apiKey").value || "").trim();
const prompt = document.getElementById("promptInput").value.trim();
if (!prompt) { alert("请输入提示词"); return; }
if (!apiKey) { alert("请输入 API Key"); return; }
if (!baseUrl) { alert("请输入服务地址"); return; }
STATE.generating = true;
const btn = document.getElementById("btnGenerate");
btn.disabled = true;
btn.textContent = "⏳ 生成中...";
const dot = document.getElementById("statusDot");
dot.className = "status-dot status-running";
document.getElementById("statusText").textContent = "生成中...";
document.getElementById("outputLog").textContent = "";
document.getElementById("outputResult").innerHTML = "";
const log = document.getElementById("outputLog");
const appendLog = (text) => { log.textContent += text; log.scrollTop = log.scrollHeight; };
// Build messages
const content = [];
content.push({ type: "text", text: prompt });
STATE.images.forEach(dataUrl => {
content.push({ type: "image_url", image_url: { url: dataUrl } });
});
const messages = [{ role: "user", content: content.length === 1 ? prompt : content }];
const body = { model: STATE.selectedModel, messages, stream: true };
const startTime = Date.now();
appendLog(`[${new Date().toLocaleTimeString()}] 模型: ${STATE.selectedModel}\n`);
appendLog(`[${new Date().toLocaleTimeString()}] 提示词: ${prompt.substring(0, 100)}${prompt.length > 100 ? '...' : ''}\n`);
appendLog(`[${new Date().toLocaleTimeString()}] 开始请求...\n`);
try {
const resp = await fetch(`${baseUrl}/v1/chat/completions`, {
method: "POST",
headers: { "Authorization": `Bearer ${apiKey}`, "Content-Type": "application/json" },
body: JSON.stringify(body),
});
if (!resp.ok) {
const errText = await resp.text();
throw new Error(`HTTP ${resp.status}: ${errText}`);
}
const reader = resp.body.getReader();
const decoder = new TextDecoder();
let fullContent = "";
let buffer = "";
while (true) {
const { done, value } = await reader.read();
if (done) break;
buffer += decoder.decode(value, { stream: true });
const lines = buffer.split("\n");
buffer = lines.pop() || "";
for (const line of lines) {
if (!line.startsWith("data: ")) continue;
const data = line.slice(6).trim();
if (data === "[DONE]") continue;
try {
const parsed = JSON.parse(data);
if (parsed.error) {
appendLog(`\n❌ 错误: ${JSON.stringify(parsed.error)}\n`);
continue;
}
const choices = parsed.choices || [];
if (choices.length > 0) {
const delta = choices[0].delta || {};
const content = delta.reasoning_content || delta.content || "";
if (content) {
fullContent += content;
appendLog(content);
}
}
} catch (e) {
// skip unparseable chunks
}
}
}
const elapsed = ((Date.now() - startTime) / 1000).toFixed(1);
appendLog(`\n\n[${new Date().toLocaleTimeString()}] 完成,耗时 ${elapsed}s\n`);
// Render result
renderResult(fullContent);
dot.className = "status-dot status-done";
document.getElementById("statusText").textContent = `完成 (${elapsed}s)`;
} catch (e) {
appendLog(`\n❌ 请求失败: ${e.message}\n`);
dot.className = "status-dot status-error";
document.getElementById("statusText").textContent = "失败";
} finally {
STATE.generating = false;
btn.disabled = false;
const meta = STATE.modelConfig;
btn.textContent = meta && meta.type === "image" ? "🎨 生成图片" : "🎬 生成视频";
}
}
function renderResult(content) {
const resultDiv = document.getElementById("outputResult");
resultDiv.innerHTML = "";
// Extract markdown images
const imgRegex = /!\[.*?\]\((.*?)\)/g;
let match;
while ((match = imgRegex.exec(content)) !== null) {
const img = document.createElement("img");
img.src = match[1];
img.alt = "生成结果";
img.loading = "lazy";
resultDiv.appendChild(img);
}
// Extract video tags
const videoRegex = /<video[^>]+src=['"]([^'"]+)['"]/gi;
while ((match = videoRegex.exec(content)) !== null) {
const video = document.createElement("video");
video.src = match[1];
video.controls = true;
video.autoplay = true;
video.loop = true;
resultDiv.appendChild(video);
}
// If no media found, show raw text
if (resultDiv.children.length === 0 && content.trim()) {
const pre = document.createElement("pre");
pre.style.cssText = "color:#aaa;font-size:13px;white-space:pre-wrap;word-break:break-all;";
pre.textContent = content;
resultDiv.appendChild(pre);
}
}
// Auto-detect base URL
(function() {
const baseUrlInput = document.getElementById("baseUrl");
const apiKeyInput = document.getElementById("apiKey");
baseUrlInput.value = window.location.origin;
baseUrlInput.addEventListener("change", loadModels);
apiKeyInput.addEventListener("change", loadModels);
loadModels();
})();
</script>
</body>
</html>