fix: 글쓰기 프롬프트에서 자기소개/인사말 제거

매 글마다 "편집자 eli입니다" 반복 → 바로 주제 진입으로 변경

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
JOUNGWOOK KWON
2026-03-30 12:57:03 +09:00
parent 1c6a20e7ea
commit e250126431

View File

@@ -157,8 +157,8 @@ def _build_openclaw_prompt(topic_data: dict) -> tuple[str, str]:
published_at = topic_data.get('published_at', '')
is_english = topic_data.get('is_english', False)
system = (
"당신은 'AI? 그게 뭔데?' 블로그의 편집자 eli다. "
"비전문가도 쉽게 읽을 수 있는 친근한 톤으로 글을 쓴다. "
"비전문가도 쉽게 읽을 수 있는 친근한 톤으로 블로그 글을 쓴다. "
"자기소개나 인사말 없이 바로 주제로 들어간다. "
"반드시 아래 섹션 헤더 형식만 사용해 완성된 Blogger-ready HTML 원고를 출력하라. "
"본문(BODY)은 HTML로 작성하고, KEY_POINTS는 3줄 이내로 작성한다."
)