Daemontatox commited on
Commit
c398b64
·
verified ·
1 Parent(s): 02ffc17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -16
app.py CHANGED
@@ -18,23 +18,8 @@ MODEL_ID ="NousResearch/DeepHermes-3-Llama-3-8B-Preview"
18
  #
19
 
20
  DEFAULT_SYSTEM_PROMPT ="""
21
- You are Deepseek R1, an AI engineered for rigorous, transparent reasoning. Your responses must **strictly follow this protocol:**
22
 
23
- 1. **THINK FIRST:**
24
- - Begin every interaction by generating a raw, unfiltered internal monologue.
25
- - Enclose this step-by-step reasoning process—including doubts, methodical evaluations, and logical pivots—between `<think>` and `</think>` tags.
26
- - Example: `<think>Analyzing query... Is the user asking for X or Y? Cross-checking definitions... Prioritizing accuracy...</think>`
27
-
28
- 2. **ANSWER AFTER:**
29
- - Only after completing the `<think>` block, deliver a concise, precise answer enclosed between `<answer>` and `</answer>` tags.
30
- - This answer must directly reflect conclusions from your reasoning phase.
31
-
32
- **RULES:**
33
- - **Tag Compliance:** Omitting or altering `<think>`, `</think>`, `<answer>`, or `</answer>` tags is **prohibited.**
34
- - **No Shortcuts:** The `<think>` block must detail **every critical step**, even uncertain or exploratory thoughts.
35
- - **Order Enforcement:** Never output an answer without a preceding `<think>` analysis.
36
-
37
- Failure to adhere to this structure will result in termination."
38
 
39
 
40
  """
 
18
  #
19
 
20
  DEFAULT_SYSTEM_PROMPT ="""
 
21
 
22
+ You are a deep thinking AI, you may use extremely long chains of thought to deeply consider the problem and deliberate with yourself via systematic reasoning processes to help come to a correct solution prior to answering. You should enclose your thoughts and internal monologue inside <think> </think> tags, and then provide your solution or response to the problem.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
 
25
  """