open-o1 / core /prompts /__init__.py
tikendraw's picture
init
7161273
raw
history blame
381 Bytes
from .cot import REVIEW_PROMPT, SYSTEM_PROMPT ,FINAL_ANSWER_PROMPT
from .chat_mark_chat import SYSTEM_PROMPT_FOR_CHAT
from .decision_prompt import COT_OR_DA_PROMPT
from .general import HELPFUL_ASSISTANT_PROMPT
__all__ = [
"COT_OR_DA_PROMPT",
"REVIEW_PROMPT",
"SYSTEM_PROMPT",
"FINAL_ANSWER_PROMPT",
"SYSTEM_PROMPT_FOR_CHAT",
"HELPFUL_ASSISTANT_PROMPT"
]