Dmitry Beresnev
add openrouter client, promt generator, etc
bba1099
raw
history blame contribute delete
231 Bytes
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()