Daemontatox commited on
Commit
49b2703
·
verified ·
1 Parent(s): 113a96f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -11,10 +11,18 @@ from transformers import (
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
 
 
11
  StoppingCriteriaList
12
  )
13
 
14
+ MODEL_ID = "Daemontatox/PathFinderAI-S1"
15
 
16
  DEFAULT_SYSTEM_PROMPT = """
17
+ Respond in the following format:
18
+ <reasoning>
19
+ ...
20
+ </reasoning>
21
+ <answer>
22
+ ...
23
+ </answer>
24
+
25
+ put your final answer within \boxed{}.
26
 
27
  """ # You can modify the default system instructions here
28