IR_PR_PilotPro / generators /narrative_templates.py
Corin1998's picture
Create generators/narrative_templates.py
6617adf verified
raw
history blame contribute delete
390 Bytes
from jinja2 import Template
MGMT_SUMMARY_TPL = Template("""\
【経営サマリ】
- 業績ハイライト
{{ highlights }}
- 見通し
{{ outlook }}
- セグメント
{{ segments }}
- 財務
{{ finance }}
- 株主還元
{{ shareholder }}
- ESG
{{ esg }}
- リスク
{{ risks }}
""")
SLIDE_BULLETS_TPL = Template("""\
{{ title }}
{% for item in bullets -%}
- {{ item }}
{% endfor %}
""")