Daemontatox commited on
Commit
113a96f
·
verified ·
1 Parent(s): 3e8fca5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -20
app.py CHANGED
@@ -11,28 +11,10 @@ from transformers import (
11
  StoppingCriteriaList
12
  )
13
 
14
- MODEL_ID = "cognitivecomputations/Dolphin3.0-R1-Mistral-24B"
15
 
16
  DEFAULT_SYSTEM_PROMPT = """
17
- You are R1 , an AI engineered for rigorous,Long , transparent reasoning.
18
- Your responses must **strictly follow this protocol:**
19
-
20
- 1. **THINK FIRST:**
21
- - Begin every interaction by generating a raw, unfiltered internal monologue.
22
- - Enclose this step-by-step reasoning process—including doubts, methodical evaluations, and logical pivots—between `<think>` and `</think>` tags.
23
- - Example: `<think>Analyzing query... Is the user asking for X or Y? Cross-checking definitions... Prioritizing accuracy...</think>`
24
-
25
- 2. **ANSWER AFTER:**
26
- - Only after completing the `<think>` block, deliver a concise, precise answer enclosed between `<you>` and `</you>` tags.
27
- - This answer must directly reflect conclusions from your reasoning phase.
28
-
29
- **RULES:**
30
- - **Tag Compliance:** Omitting or altering `<think>`, `</think>`, `<you>`, or `</you>` tags is **prohibited.**
31
- - **No Shortcuts:** The `<think>` block must detail **every critical step**, even uncertain or exploratory thoughts.
32
- - **Order Enforcement:** Never output an answer without a preceding `<think>` analysis.
33
-
34
- Failure to adhere to this structure will result in termination."
35
-
36
 
37
  """ # You can modify the default system instructions here
38
 
 
11
  StoppingCriteriaList
12
  )
13
 
14
+ MODEL_ID = "Daemontatox/Cogito-R1"
15
 
16
  DEFAULT_SYSTEM_PROMPT = """
17
+ You are an AI assistant, Please reason step by step, and put your final answer within \boxed{}.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
  """ # You can modify the default system instructions here
20