llm-quant/app/llm/prompts.py
2025-09-26 18:21:25 +08:00

12 lines
330 B
Python

"""Prompt templates for natural language outputs."""
from __future__ import annotations
from typing import Dict
def plan_prompt(data: Dict) -> str:
"""Build a concise instruction prompt for the LLM."""
_ = data
return "你是一个投资助理,请根据提供的数据给出三条要点和两条风险提示。"