Spaces:
Running
Running
File size: 28,543 Bytes
67ad1a6 c949916 67ad1a6 c949916 67ad1a6 c949916 67ad1a6 c949916 67ad1a6 c949916 67ad1a6 c949916 67ad1a6 92a4e5a 67ad1a6 | 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 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 | import json
import os
import re
from typing import Optional
from openai import OpenAI
from google import genai
from typing import Any, Dict, List, Optional, Union
# ========== 生成selected_nodes.json ==========
def generate_selected_nodes(dag_json_path, max_len, output_path='selected_node.json'):
# 1. 读取 dag.json
with open(dag_json_path, 'r', encoding='utf-8') as f:
dag_data = json.load(f)
all_nodes = dag_data.get('nodes', [])
# 2. 构建辅助字典,方便通过 name 快速查找节点信息
# 同时区分普通节点和视觉节点
node_map = {node['name']: node for node in all_nodes}
# 3. 初始化队列
# 找到根节点 (level=0)
root_node = next((node for node in all_nodes if node.get('level') == 0), None)
if not root_node:
raise ValueError("Root node (level 0) not found in dag.json")
# 获取根节点的子节点 (Sections) 作为初始队列
# 注意:这里队列存储的是节点的 name
current_queue = list(root_node.get('edge', []))
# 初始化计数器
node_num = len(current_queue)
level_num = 1
# 4. 循环处理队列,直到 level_num 达到 5
while level_num < 5:
i = 0
while i < len(current_queue):
node_name = current_queue[i]
node_info = node_map.get(node_name)
if not node_info:
# 异常情况:队列里的节点在map里找不到
i += 1
continue
# ===== 新增逻辑:如果结点 name 含有 "introduction"/"INTRODUCTION",则跳过该结点 =====
# 注意:不修改其他逻辑,仅在处理该结点时直接跳过
if "introduction" in node_name.lower():
i += 1
continue
# 这里的 level 属性可能缺失,默认给个非当前level的值
current_node_level = node_info.get('level', -1)
# 判断这个结点的level是否等于level_num
if current_node_level != level_num:
i += 1
continue
# 获取子节点
children_names = node_info.get('edge', [])
num_children = len(children_names)
if num_children == 0:
# 没有子节点,无法展开
i += 1
continue
potential_total_num = len(current_queue) + num_children
if len(current_queue) + num_children <= max_len:
# 执行展开操作
current_queue[i:i+1] = children_names
else:
# 大于 max_num,不展开,处理下一个
i += 1
# 当处理完当前队列的最后一个结点时,level+1
level_num += 1
# 5. 生成最终结果
final_nodes_list = []
for node_name in current_queue:
original_node = node_map.get(node_name)
if not original_node:
continue
# 深拷贝以避免修改原始数据(也可以直接构建新字典)
# 这里为了安全起见构建新字典
export_node = original_node.copy()
original_visual_list = export_node.get('visual_node', [])
# 某些节点可能 visual_node 字段是空的或者不存在
if original_visual_list:
expanded_visual_nodes = []
# 确保它是列表,有些脏数据可能不是列表
if isinstance(original_visual_list, list):
for v_name in original_visual_list:
# 根据 name 查找视觉节点详细信息
v_node_full = node_map.get(v_name)
if v_node_full:
expanded_visual_nodes.append(v_node_full)
else:
# 如果找不到,保留原名或者忽略,这里选择保留原结构提醒缺失
expanded_visual_nodes.append({"name": v_name, "error": "Node not found"})
# 替换原有属性
export_node['visual_node'] = expanded_visual_nodes
final_nodes_list.append(export_node)
# 6. 写入文件
output_data = {"selected_nodes": final_nodes_list}
with open(output_path, 'w', encoding='utf-8') as f:
json.dump(final_nodes_list, f, ensure_ascii=False, indent=4)
print(f"Successfully generated {output_path} with {len(final_nodes_list)} nodes.")
# ========== 初始化outline ==========
import os
import json
from openai import OpenAI
from google import genai
from google.genai import types
def outline_initialize(dag_json_path, outline_initialize_prompt, model, config):
"""
使用 LLM 初始化 outline.json(仅创建两个节点:Title + Contents)
适配 OpenAI 和 Google Gemini (新版 google-genai SDK)
输入:
dag_json_path: dag.json 文件路径
outline_initialize_prompt: 传给 LLM 的 prompt(字符串)
model: 模型名称 (例如 "gpt-4o" 或 "gemini-2.0-flash")
config: 配置字典,需包含 ['api_keys']['gemini_api_key']
输出:
outline.json: 保存在 dag.json 同目录
返回 python list(outline 结构)
"""
# --- load dag.json ---
if not os.path.exists(dag_json_path):
raise FileNotFoundError(f"dag.json not found: {dag_json_path}")
with open(dag_json_path, "r", encoding="utf-8") as f:
dag_data = json.load(f)
# --- extract first node ---
if isinstance(dag_data, list):
first_node = dag_data[0]
elif isinstance(dag_data, dict) and "nodes" in dag_data:
first_node = dag_data["nodes"][0]
else:
raise ValueError("Unsupported dag.json format")
first_node_text = json.dumps(first_node, ensure_ascii=False, indent=2)
# 系统提示词
system_prompt = "You are an expert academic presentation outline generator."
raw_output = ""
# --- LLM Call Switch ---
# 简单的判别逻辑:如果模型名包含 "gemini" 则调用 Google SDK,否则默认为 OpenAI 兼容 SDK
if "gemini" in model.lower():
# --- Gemini Call (google-genai SDK) ---
api_key = config['api_keys'].get('gemini_api_key')
raw_url = config.get('api_base_url', '').strip().rstrip("/")
if raw_url.endswith("/v1"):
base_url = raw_url[:-3].rstrip("/") # 去掉最后的 /v1
else:
base_url = raw_url
# 配置 Client
client = genai.Client(api_key=api_key,http_options={'base_url': base_url} if base_url else None)
# 构造 user 消息内容
user_content = f"{outline_initialize_prompt}\n\nData Context:\n{first_node_text}"
try:
response = client.models.generate_content(
model=model,
contents=user_content,
config=types.GenerateContentConfig(
system_instruction=system_prompt,
temperature=0.0,
response_mime_type="application/json" # 强制 Gemini 输出 JSON,提高稳定性
)
)
raw_output = response.text
except Exception as e:
raise RuntimeError(f"Gemini API call failed: {str(e)}")
else:
# --- OpenAI Call ---
api_key = config['api_keys'].get('openai_api_key')
client = OpenAI(api_key=api_key)
try:
response = client.chat.completions.create(
model=model,
messages=[
{
"role": "system",
"content": system_prompt
},
{
"role": "user",
"content": outline_initialize_prompt
},
{
"role": "user",
"content": first_node_text
}
],
temperature=0
)
raw_output = response.choices[0].message.content.strip()
except Exception as e:
raise RuntimeError(f"OpenAI API call failed: {str(e)}")
# --- Extract JSON (Generic cleaning logic) ---
cleaned = raw_output.strip()
# Remove ```json ... ``` markdown fences
if cleaned.startswith("```"):
cleaned = cleaned.strip("`")
if cleaned.lstrip().startswith("json"):
cleaned = cleaned.split("\n", 1)[1]
# Robustness: locate JSON block via first [ and last ]
try:
first = cleaned.index("[")
last = cleaned.rindex("]")
cleaned = cleaned[first:last + 1]
except ValueError:
pass # Try parsing the whole string if brackets aren't found cleanly
try:
outline_data = json.loads(cleaned)
except json.JSONDecodeError:
raise ValueError(f"LLM output is not valid JSON:\nRaw Output: {raw_output}")
# --- Save outline.json ---
out_dir = os.path.dirname(dag_json_path)
out_path = os.path.join(out_dir, "outline.json")
with open(out_path, "w", encoding="utf-8") as f:
json.dump(outline_data, f, indent=4, ensure_ascii=False)
print(f"✅ Outline saved to: {out_path} (Model: {model})")
return outline_data
# ========== 调用 gpt 生成完整 outline ==========
def generate_complete_outline(
selected_node_path,
outline_path,
generate_complete_outline_prompt,
model,
config
):
"""
逐个 selected_node 调用 LLM,生成 outline 节点并追加到 outline.json
适配 OpenAI 和 Google Gemini (新版 google-genai SDK)
输入:
selected_node_path: selected_node.json 路径
outline_path: outline.json 路径
generate_complete_outline_prompt: 给 LLM 的 prompt(字符串)
model: 模型名称 (例如 "gpt-4o" 或 "gemini-2.0-flash")
config: 配置字典
输出:
更新后的 outline.json
返回 outline(list)
"""
# --- load selected_node.json ---
if not os.path.exists(selected_node_path):
raise FileNotFoundError(f"selected_node.json not found: {selected_node_path}")
with open(selected_node_path, "r", encoding="utf-8") as f:
selected_nodes = json.load(f)
if not isinstance(selected_nodes, list):
raise ValueError("selected_node.json must be a list")
# --- load outline.json ---
if not os.path.exists(outline_path):
raise FileNotFoundError(f"outline.json not found: {outline_path}")
with open(outline_path, "r", encoding="utf-8") as f:
outline_data = json.load(f)
if not isinstance(outline_data, list):
raise ValueError("outline.json must be a list")
# --- Initialize Client based on model ---
is_gemini = "gemini" in model.lower()
client = None
system_prompt = "You are an expert academic presentation outline generator."
if is_gemini:
api_key = config['api_keys'].get('gemini_api_key')
raw_url = config.get('api_base_url', '').strip().rstrip("/")
if raw_url.endswith("/v1"):
base_url = raw_url[:-3].rstrip("/") # 去掉最后的 /v1
else:
base_url = raw_url
client = genai.Client(api_key=api_key, http_options={'base_url': base_url} if base_url else None)
else:
api_key = config['api_keys'].get('openai_api_key')
client = OpenAI(api_key=api_key)
# --- iterate selected nodes ---
for idx, node in enumerate(selected_nodes):
payload = {
"name": node.get("name"),
"content": node.get("content"),
"visual_node": node.get("visual_node", [])
}
payload_text = json.dumps(payload, ensure_ascii=False, indent=2)
raw_output = ""
try:
if is_gemini:
# --- Gemini Call ---
user_content = f"{generate_complete_outline_prompt}\n\nNode Data:\n{payload_text}"
response = client.models.generate_content(
model=model,
contents=user_content,
config=types.GenerateContentConfig(
system_instruction=system_prompt,
temperature=0.0,
response_mime_type="application/json"
)
)
raw_output = response.text
else:
# --- OpenAI Call ---
response = client.chat.completions.create(
model=model,
messages=[
{
"role": "system",
"content": system_prompt
},
{
"role": "user",
"content": generate_complete_outline_prompt
},
{
"role": "user",
"content": payload_text
}
],
temperature=0
)
raw_output = response.choices[0].message.content.strip()
except Exception as e:
print(f"⚠️ Error processing node {idx} ({node.get('name')}): {e}")
continue # Skip this node or handle error as needed
# --- clean JSON ---
cleaned = raw_output.strip()
if cleaned.startswith("```"):
cleaned = cleaned.strip("`")
if cleaned.lstrip().startswith("json"):
cleaned = cleaned.split("\n", 1)[1]
try:
first = cleaned.index("{")
last = cleaned.rindex("}")
cleaned = cleaned[first:last + 1]
except Exception:
pass
try:
outline_node = json.loads(cleaned)
except json.JSONDecodeError:
# print error but maybe continue? strict raise for now
raise ValueError(
f"LLM output is not valid JSON for selected_node index {idx}:\n{raw_output}"
)
# --- append to outline ---
outline_data.append(outline_node)
# --- save outline.json ---
with open(outline_path, "w", encoding="utf-8") as f:
json.dump(outline_data, f, indent=4, ensure_ascii=False)
print(f"✅ Complete outline updated: {outline_path}")
return outline_data
# ========== 调用 LLM 为每一张ppt配模板 ==========
SlideType = Dict[str, Any]
OutlineType = List[SlideType]
JsonType = Union[Dict[str, Any], List[Any], str, int, float, bool, None]
def arrange_template(
outline_path: str,
arrange_template_prompt: str,
model: str,
config: Dict[str, Any]
) -> OutlineType:
"""
Read an outline.json, call LLM to choose a PPT template for slides with null template.
适配 OpenAI 和 Google Gemini (新版 google-genai SDK)
"""
# --- Client Init ---
is_gemini = "gemini" in model.lower()
client = None
if is_gemini:
api_key = config['api_keys'].get('gemini_api_key')
raw_url = config.get('api_base_url', '').strip().rstrip("/")
if raw_url.endswith("/v1"):
base_url = raw_url[:-3].rstrip("/") # 去掉最后的 /v1
else:
base_url = raw_url
client = genai.Client(api_key=api_key, http_options={'base_url': base_url} if base_url else None)
else:
api_key = config['api_keys'].get('openai_api_key')
client = OpenAI(api_key=api_key)
# 读取 outline.json
with open(outline_path, "r", encoding="utf-8") as f:
outline: OutlineType = json.load(f)
def is_null_template(value: Any) -> bool:
"""
Treat Python None or explicit string 'NULL' / 'null' / ''
as empty template that needs to be filled.
"""
if value is None:
return True
if isinstance(value, str) and value.strip().lower() in {"null", ""}:
return True
return False
def select_template_for_slide(slide: SlideType, index: int) -> None:
"""
If slide['template'] is NULL/None, call LLM to select a template.
"""
if not is_null_template(slide.get("template")):
return # already has a template, skip
# 整个 slide 作为 JSON 发给 GPT
slide_json_str = json.dumps(slide, ensure_ascii=False, indent=2)
# 统计信息
figures = slide.get("figure", []) or []
formulas = slide.get("formula", []) or []
summary_info = {
"slide_index": index,
"num_figures": len(figures),
"num_formulas": len(formulas),
}
summary_json_str = json.dumps(summary_info, ensure_ascii=False, indent=2)
# 构造 User Content
user_content = (
"Below is one slide node from outline.json.\n"
"First, read the raw slide JSON.\n"
"Then, use the template selection rules in the system message to choose "
"exactly one template for this slide.\n\n"
"A small auto-generated summary is also provided to help you:\n"
f"Summary:\n```json\n{summary_json_str}\n```\n\n"
"Full slide node (JSON):\n```json\n"
+ slide_json_str
+ "\n```"
)
content = ""
try:
if is_gemini:
# --- Gemini Call ---
response = client.models.generate_content(
model=model,
contents=user_content,
config=types.GenerateContentConfig(
system_instruction=arrange_template_prompt,
temperature=0.0,
response_mime_type="application/json"
)
)
content = response.text
else:
# --- OpenAI Call ---
messages = [
{
"role": "system",
"content": arrange_template_prompt,
},
{
"role": "user",
"content": user_content,
},
]
response = client.chat.completions.create(
model=model,
messages=messages,
temperature=0.0,
)
content = (response.choices[0].message.content or "").strip()
except Exception as e:
print(f"[WARN] Failed to call LLM for slide {index}: {e}")
return
# 期望 GPT 返回 JSON:{"template": "T2_ImageRight.html"}
template_name: Union[str, None] = None
# 1) 尝试直接解析为 JSON
try:
# 去掉可能的代码块包装 ```json ... ```
content_for_json = content
if "```" in content:
parts = content.split("```")
# 寻找包含 json 的部分或直接取第二部分
if len(parts) > 1:
candidate = parts[1]
if candidate.lstrip().startswith("json"):
candidate = candidate.split("\n", 1)[-1]
content_for_json = candidate
parsed = json.loads(content_for_json)
if isinstance(parsed, dict) and "template" in parsed:
template_name = parsed["template"]
elif isinstance(parsed, str):
template_name = parsed
except Exception:
# 2) 如果 JSON 解析失败,当作纯文本处理
cleaned = content.strip()
if cleaned.startswith('"') and cleaned.endswith('"'):
cleaned = cleaned[1:-1].strip()
template_name = cleaned or None
if isinstance(template_name, str) and template_name:
slide["template"] = template_name
else:
print(
f"[WARN] Could not parse template from model output for slide {index}, "
"leaving 'template' unchanged."
)
# 顶层是一个列表,每个元素是一张 slide
if not isinstance(outline, list):
raise ValueError("outline.json must be a list of slide nodes at top level.")
for idx, slide in enumerate(outline):
if isinstance(slide, dict):
select_template_for_slide(slide, idx)
# 写回文件
with open(outline_path, "w", encoding="utf-8") as f:
json.dump(outline, f, ensure_ascii=False, indent=2)
return outline
# ========== 生成最终的PPT ==========
_MD_IMAGE_RE = re.compile(r"!\[\s*.*?\s*\]\(\s*([^)]+?)\s*\)")
def _extract_md_image_path(name_field: str) -> str:
"""
Extracts relative image path from a markdown image string like:
'' -> 'images/abc.jpg'
If not markdown format, returns the original string stripped.
"""
if not isinstance(name_field, str):
return ""
s = name_field.strip()
m = _MD_IMAGE_RE.search(s)
if m:
return m.group(1).strip()
return s
def _normalize_node(node: Dict[str, Any]) -> Dict[str, Any]:
"""
Normalize node fields and extract clean image paths for figure/formula name fields.
"""
text = node.get("text", "")
template = node.get("template", "")
figure = node.get("figure", []) or []
formula = node.get("formula", []) or []
def norm_imgs(imgs: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
out = []
for it in imgs:
if not isinstance(it, dict):
continue
name = it.get("name", "")
out.append({
"name": name,
"path": _extract_md_image_path(name),
"caption": it.get("caption", ""),
"resolution": it.get("resolution", "")
})
return out
return {
"text": text if isinstance(text, str) else str(text),
"template": template if isinstance(template, str) else str(template),
"figure": norm_imgs(figure if isinstance(figure, list) else []),
"formula": norm_imgs(formula if isinstance(formula, list) else [])
}
def generate_ppt(
outline_path: str,
ppt_template_path: str,
generate_ppt_with_gemini_prompt: Union[Dict[str, str], List[Dict[str, str]]],
model: str,
config: Dict[str, Any]
) -> List[str]:
"""
Traverse outline JSON nodes, load corresponding HTML templates, send (prompt + node + template)
to LLM (Gemini or OpenAI), then save revised HTML to the outline.json directory.
Args:
outline_path: path to outline json file.
ppt_template_path: folder containing html templates.
generate_ppt_with_gemini_prompt: JSON-like prompt (dict or list of messages).
model: model name (e.g., 'gemini-2.0-flash', 'gpt-4o').
config: config dict containing api_keys.
Returns:
List of saved HTML file paths (one per node).
"""
# --- Client Init ---
is_gemini = "gemini" in model.lower()
client = None
if is_gemini:
api_key = config['api_keys'].get('gemini_api_key')
raw_url = config.get('api_base_url', '').strip().rstrip("/")
if raw_url.endswith("/v1"):
base_url = raw_url[:-3].rstrip("/") # 去掉最后的 /v1
else:
base_url = raw_url
client = genai.Client(api_key=api_key, http_options={'base_url': base_url} if base_url else None)
else:
api_key = config['api_keys'].get('openai_api_key')
client = OpenAI(api_key=api_key)
outline_path = os.path.abspath(outline_path)
ppt_template_path = os.path.abspath(ppt_template_path)
if not os.path.isfile(outline_path):
raise FileNotFoundError(f"outline_path 不存在或不是文件: {outline_path}")
if not os.path.isdir(ppt_template_path):
raise NotADirectoryError(f"ppt_template_path 不存在或不是文件夹: {ppt_template_path}")
with open(outline_path, "r", encoding="utf-8") as f:
outline = json.load(f)
if not isinstance(outline, list):
raise ValueError("outline_path 的 JSON 顶层必须是 list(每个元素代表一页 PPT 结点)")
out_dir = os.path.dirname(outline_path)
saved_files: List[str] = []
# Allow prompt to be either a single message dict or a list of messages.
base_messages = []
if isinstance(generate_ppt_with_gemini_prompt, dict):
base_messages = [generate_ppt_with_gemini_prompt]
elif isinstance(generate_ppt_with_gemini_prompt, list):
base_messages = generate_ppt_with_gemini_prompt
else:
raise TypeError("generate_ppt_with_gemini_prompt 必须是 dict 或 list[dict] 的 JSON 形式")
# Helper to clean node (normalize) - assuming simple dict copy if function missing
def _normalize_node(n): return n
for idx, node in enumerate(outline, start=1):
if not isinstance(node, dict):
continue
norm_node = _normalize_node(node)
raw_template = norm_node.get("template")
# Check if raw_template exists and is not empty after stripping whitespace
if raw_template and raw_template.strip():
template_file = raw_template.strip()
else:
# Assign default value when template is None, empty string "", or only whitespace
template_file = "T1_TextOnly.html"
# Skip if no template or explicitly null/empty
if not template_file or template_file.lower() == "null":
continue
template_full_path = os.path.join(ppt_template_path, template_file)
if not os.path.isfile(template_full_path):
# raise FileNotFoundError(f"找不到模板文件: {template_full_path}")
print(f"⚠️ Template not found: {template_file}, skipping slide {idx}")
continue
with open(template_full_path, "r", encoding="utf-8") as tf:
template_html = tf.read()
user_payload = {
"ppt_index": idx,
"node": norm_node,
"template_html": template_html,
}
# Construct OpenAI-style messages list
current_messages = list(base_messages) + [
{
"role": "user",
"content": (
"Here is the slide node JSON and the HTML template. "
"Revise the HTML per instructions and return ONLY the final HTML code.\n"
"Do NOT include markdown fences like ```html ... ```.\n\n"
f"{json.dumps(user_payload, ensure_ascii=False)}"
),
}
]
revised_html = ""
try:
if is_gemini:
# --- Gemini Call ---
# Convert messages list to a single string prompt for Gemini
# (or pass list if using chat interface, but generate_content with string is often simpler for 1-turn)
prompt_parts = []
for m in current_messages:
prompt_parts.append(str(m.get("content", "")))
final_prompt = "\n\n".join(prompt_parts)
resp = client.models.generate_content(
model=model,
contents=final_prompt
)
revised_html = getattr(resp, "text", str(resp))
else:
# --- OpenAI Call ---
resp = client.chat.completions.create(
model=model,
messages=current_messages,
temperature=0.0
)
revised_html = resp.choices[0].message.content
except Exception as e:
print(f"⚠️ API Call failed for slide {idx}: {e}")
continue
# Clean output
if revised_html:
revised_html = revised_html.strip()
# Remove markdown fences if present
if revised_html.startswith("```"):
revised_html = revised_html.strip("`")
if revised_html.lstrip().startswith("html"):
revised_html = revised_html.split("\n", 1)[1]
# Save
out_name = f"{idx}_ppt.html"
out_path = os.path.join(out_dir, out_name)
with open(out_path, "w", encoding="utf-8") as wf:
wf.write(revised_html)
saved_files.append(out_path)
print(f"✅ Generated: {out_path}")
return saved_files |