Spaces:
Runtime error
Runtime error
File size: 231 Bytes
bba1099 |
1 2 3 4 5 6 7 8 |
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()
|