tikendraw commited on
Commit
7161273
·
1 Parent(s): a394afc
Files changed (1) hide show
  1. core/prompts/__init__.py +13 -0
core/prompts/__init__.py CHANGED
@@ -1,2 +1,15 @@
1
 
 
 
 
 
2
 
 
 
 
 
 
 
 
 
 
 
1
 
2
+ from .cot import REVIEW_PROMPT, SYSTEM_PROMPT ,FINAL_ANSWER_PROMPT
3
+ from .chat_mark_chat import SYSTEM_PROMPT_FOR_CHAT
4
+ from .decision_prompt import COT_OR_DA_PROMPT
5
+ from .general import HELPFUL_ASSISTANT_PROMPT
6
 
7
+
8
+ __all__ = [
9
+ "COT_OR_DA_PROMPT",
10
+ "REVIEW_PROMPT",
11
+ "SYSTEM_PROMPT",
12
+ "FINAL_ANSWER_PROMPT",
13
+ "SYSTEM_PROMPT_FOR_CHAT",
14
+ "HELPFUL_ASSISTANT_PROMPT"
15
+ ]