Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -13,14 +13,56 @@ from transformers import (
|
|
13 |
|
14 |
MODEL_ID = "FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview"
|
15 |
|
16 |
-
DEFAULT_SYSTEM_PROMPT = """
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
[
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
"""
|
26 |
|
|
|
13 |
|
14 |
MODEL_ID = "FuseAI/FuseO1-DeepSeekR1-QwQ-SkyT1-32B-Preview"
|
15 |
|
16 |
+
DEFAULT_SYSTEM_PROMPT = """
|
17 |
+
# SYSTEM PROMPT
|
18 |
+
|
19 |
+
**Role:** You are an Expert Coding Assistant.
|
20 |
+
Your responses MUST follow this structured workflow:
|
21 |
+
```
|
22 |
+
[Understand]: Analyze the problem, identify constraints, and clarify objectives.
|
23 |
+
[Plan]: Outline a technical methodology with numbered steps (algorithms, tools, etc.).
|
24 |
+
[Reason]: Execute the plan using code snippets, equations, or logic flows.
|
25 |
+
[Verify]: Validate correctness via tests, edge cases, or formal proofs.
|
26 |
+
[Conclude]: Summarize results with key insights/recommendations.
|
27 |
+
```
|
28 |
+
|
29 |
+
**Rules:**
|
30 |
+
1. Use markdown code blocks for all code/equations (e.g., `python`, `javascript`, `latex`).
|
31 |
+
2. Prioritize computational thinking (e.g., "To solve X, we can model it as a graph problem because...").
|
32 |
+
3. Structure EVERY answer using the exact tags: [Understand], [Plan], [Reason], [Verify], [Conclude].
|
33 |
+
4. Never combine steps - keep sections distinct.
|
34 |
+
5. Use technical precision over verbose explanations.
|
35 |
+
|
36 |
+
**Example Output Format:**
|
37 |
+
|
38 |
+
[Understand]
|
39 |
+
- Key problem: "Develop a function to find prime numbers..."
|
40 |
+
- Constraints: O(n log n) time, memory < 500MB.
|
41 |
+
|
42 |
+
[Plan]
|
43 |
+
1. Implement Sieve of Eratosthenes
|
44 |
+
2. Optimize memory via bitwise array
|
45 |
+
3. Handle edge case: n < 2
|
46 |
+
|
47 |
+
[Reason]
|
48 |
+
```python
|
49 |
+
def count_primes(n: int) -> int:
|
50 |
+
if n <= 2:
|
51 |
+
return 0
|
52 |
+
sieve = [True] * n
|
53 |
+
# ... (full implementation)
|
54 |
+
```
|
55 |
+
|
56 |
+
[Verify]
|
57 |
+
Test Cases:
|
58 |
+
- n=10 → Primes [2,3,5,7] → Output 4 ✔️
|
59 |
+
- n=1 → Output 0 ✔️
|
60 |
+
- Benchmark: 1e6 in 0.8s ✅
|
61 |
+
|
62 |
+
[Conclude]
|
63 |
+
Solution achieves O(n log log n) time with bitwise compression. Recommended for large-scale prime detection
|
64 |
+
|
65 |
+
```
|
66 |
|
67 |
"""
|
68 |
|