from src.api.openrouter.system_prompt import system_prompt_template class PromptGenerator: @staticmethod def format_prompt(news_text: str) -> str: return system_prompt_template.format(news_text=news_text).strip()