tikendraw commited on
Commit
ae3609b
·
1 Parent(s): 809466f
Files changed (1) hide show
  1. core/prompts/__init__.py +4 -4
core/prompts/__init__.py CHANGED
@@ -1,5 +1,5 @@
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 PLAN_SYSTEM_PROMPT
5
  from .general import HELPFUL_ASSISTANT_PROMPT
@@ -7,9 +7,9 @@ from .general import HELPFUL_ASSISTANT_PROMPT
7
 
8
  __all__ = [
9
  "PLAN_SYSTEM_PROMPT",
10
- "REVIEW_PROMPT",
11
- "SYSTEM_PROMPT",
12
- "FINAL_ANSWER_PROMPT",
13
  "SYSTEM_PROMPT_FOR_CHAT",
14
  "HELPFUL_ASSISTANT_PROMPT"
15
  ]
 
1
 
2
+ from .cot import REVIEW_PROMPT_EXAMPLE_JSON, SYSTEM_PROMPT_EXAMPLE_JSON, FINAL_ANSWER_EXAMPLE_JSON
3
  from .chat_mark_chat import SYSTEM_PROMPT_FOR_CHAT
4
  from .decision_prompt import PLAN_SYSTEM_PROMPT
5
  from .general import HELPFUL_ASSISTANT_PROMPT
 
7
 
8
  __all__ = [
9
  "PLAN_SYSTEM_PROMPT",
10
+ "REVIEW_PROMPT_EXAMPLE_JSON",
11
+ "SYSTEM_PROMPT_EXAMPLE_JSON",
12
+ "FINAL_ANSWER_EXAMPLE_JSON",
13
  "SYSTEM_PROMPT_FOR_CHAT",
14
  "HELPFUL_ASSISTANT_PROMPT"
15
  ]