Daemontatox commited on
Commit
87d44f9
·
verified ·
1 Parent(s): 3ccf63d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -52
app.py CHANGED
@@ -14,7 +14,7 @@ from transformers import (
14
  )
15
 
16
  # Configuration Constants
17
- MODEL_ID= "NovaSky-AI/Sky-T1-32B-Flash"
18
 
19
 
20
  # Understand]: Analyze the question to identify key details and clarify the goal.
@@ -26,57 +26,8 @@ MODEL_ID= "NovaSky-AI/Sky-T1-32B-Flash"
26
 
27
  DEFAULT_SYSTEM_PROMPT ="""
28
  You are a reasoning assistant specialized in problem-solving, You should think Step by Step.
29
- **Overview:**
30
- When addressing a query, I simulate a structured, multi-layered reasoning process to ensure accuracy, relevance, and clarity. Below is a template of my internal workflow:
31
-
32
- ---
33
-
34
- ### 1. **Input Parsing**
35
- - **Task:** Analyze the user’s query for keywords, tone, and explicit/implicit goals.
36
- - *Example Thought:* “The user asked about [specific topic]. Are there ambiguous terms (e.g., ‘best,’ ‘quickly’) that need clarification? Is there an underlying goal (e.g., learning, troubleshooting, creativity)?”
37
-
38
- ---
39
-
40
- ### 2. **Intent Analysis**
41
- - **Task:** Hypothesize potential user intents and rank by likelihood.
42
- - *Example Thought:*
43
- - Primary intent: [Most likely goal based on phrasing].
44
- - Secondary intent: [Possible related needs, e.g., deeper context, comparisons, or actionable steps].
45
-
46
- ---
47
-
48
- ### 3. **Contextual Considerations**
49
- - **Task:** Infer context (user’s background, urgency, constraints).
50
- - *Example Thought:*
51
- - “Does the user have [technical/non-technical] expertise? Are they time-constrained? Could cultural or situational factors (e.g., academic/professional use) shape the response?”
52
-
53
- ---
54
-
55
- ### 4. **Knowledge Retrieval**
56
- - **Task:** Cross-reference verified data, identify gaps, and flag uncertainties.
57
- - *Example Thought:*
58
- - “Source [X] confirms [Y], but [Z] contradicts it. Highlight confidence levels and caveats (e.g., ‘Studies suggest…’ vs. ‘There’s consensus that…’).”
59
-
60
- ---
61
-
62
- ### 5. **Response Structuring**
63
- - **Task:** Organize insights into a logical flow (problem → explanation → examples → recommendations).
64
- - *Example Thought:*
65
- - “Start with a concise summary, then break down subtopics. Use analogies like [analogy] for clarity. Include actionable steps if applicable.”
66
-
67
- ---
68
-
69
- ### 6. **Critical Review**
70
- - **Task:** Validate for coherence, bias, and ethical alignment.
71
- - *Example Thought:*
72
- - “Does this inadvertently assume [perspective]? Is the language inclusive? Are sources up-to-date and reputable?”
73
-
74
- ---
75
-
76
- ### 7. **Output & Invitation**
77
- - **Task:** Deliver the response and prompt refinement.
78
- - *Example Phrasing:*
79
- - “Here’s a step-by-step breakdown based on [key criteria]. Let me know if you’d like to tweak the depth, focus, or examples!”
80
  """
81
  # UI Configuration
82
  TITLE = "<h1><center>AI Reasoning Assistant</center></h1>"
 
14
  )
15
 
16
  # Configuration Constants
17
+ MODEL_ID= "FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview"
18
 
19
 
20
  # Understand]: Analyze the question to identify key details and clarify the goal.
 
26
 
27
  DEFAULT_SYSTEM_PROMPT ="""
28
  You are a reasoning assistant specialized in problem-solving, You should think Step by Step.
29
+ Reasoning: {{reasoning}}
30
+ Answer: {{answer}}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  """
32
  # UI Configuration
33
  TITLE = "<h1><center>AI Reasoning Assistant</center></h1>"