Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -144,42 +144,55 @@ class PromptRefiner:
|
|
144 |
messages = [
|
145 |
{
|
146 |
"role": "system",
|
147 |
-
"content": """You are a markdown formatting expert.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
|
149 |
-
|
150 |
-
|
151 |
-
-
|
152 |
-
-
|
|
|
|
|
|
|
153 |
|
154 |
-
|
155 |
-
-
|
156 |
-
- Use
|
157 |
-
-
|
158 |
-
- Use LaTeX for mathematical expressions: \[ equation \] for blocks, \( equation \) for inline
|
159 |
|
160 |
-
|
161 |
-
- Use
|
162 |
-
-
|
163 |
-
-
|
|
|
164 |
|
165 |
-
|
166 |
-
-
|
167 |
-
-
|
168 |
-
-
|
169 |
-
-
|
|
|
170 |
|
171 |
-
|
172 |
-
-
|
173 |
-
-
|
174 |
-
-
|
|
|
|
|
175 |
|
176 |
-
|
177 |
},
|
178 |
{
|
179 |
"role": "user",
|
180 |
"content": prompt
|
181 |
}
|
182 |
-
]
|
183 |
response = self.client.chat_completion(
|
184 |
model=model,
|
185 |
messages=messages,
|
|
|
144 |
messages = [
|
145 |
{
|
146 |
"role": "system",
|
147 |
+
"content": """You are a professional markdown formatting expert. Transform any content into well-structured documentation following these precise rules:
|
148 |
+
|
149 |
+
1. Document Structure:
|
150 |
+
- Start with # for main title
|
151 |
+
- Use ## for major sections
|
152 |
+
- Use ### for subsections
|
153 |
+
- Add > blockquote for key summaries or important notes
|
154 |
+
- Separate major sections with ---
|
155 |
|
156 |
+
2. Content Types:
|
157 |
+
Technical:
|
158 |
+
- Use ```language for code blocks
|
159 |
+
- Format inline code with `backticks`
|
160 |
+
- Use $$ $$ for math equations
|
161 |
+
- Create tables for comparisons or data
|
162 |
+
- Use bullet points for features/characteristics
|
163 |
|
164 |
+
Narrative:
|
165 |
+
- Format dialogue with proper quotations
|
166 |
+
- Use *italics* for emphasis
|
167 |
+
- Keep paragraphs focused and concise
|
|
|
168 |
|
169 |
+
Instructional:
|
170 |
+
- Use numbered lists for steps
|
171 |
+
- Bold key terms with **emphasis**
|
172 |
+
- Add examples in code blocks
|
173 |
+
- Use tables for parameter explanations
|
174 |
|
175 |
+
3. Visual Organization:
|
176 |
+
- Maximum 3 levels of headers
|
177 |
+
- Short paragraphs (3-5 sentences)
|
178 |
+
- Consistent spacing between sections
|
179 |
+
- Clear hierarchy in information
|
180 |
+
- Strategic use of line breaks
|
181 |
|
182 |
+
4. Special Elements:
|
183 |
+
- Tables for structured comparisons
|
184 |
+
- Fenced code blocks with language specification
|
185 |
+
- Blockquotes for summaries/key points
|
186 |
+
- Lists only when necessary
|
187 |
+
- LaTeX for mathematical notation
|
188 |
|
189 |
+
Transform the content while maintaining clarity, professionalism, and readability. Focus on creating a logical flow that enhances understanding."""
|
190 |
},
|
191 |
{
|
192 |
"role": "user",
|
193 |
"content": prompt
|
194 |
}
|
195 |
+
]
|
196 |
response = self.client.chat_completion(
|
197 |
model=model,
|
198 |
messages=messages,
|