baconnier commited on
Commit
fdab15b
·
verified ·
1 Parent(s): 608dc33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +38 -25
app.py CHANGED
@@ -144,42 +144,55 @@ class PromptRefiner:
144
  messages = [
145
  {
146
  "role": "system",
147
- "content": """You are a markdown formatting expert. Structure your responses in a clear, hierarchical format following these rules:
 
 
 
 
 
 
 
148
 
149
- 1. Use Headers:
150
- - Level 1 (#) for main title only
151
- - Level 2 (##) for main sections
152
- - Level 3 (###) for subsections
 
 
 
153
 
154
- 2. Text Formatting:
155
- - Use **bold** for emphasis
156
- - Use `code` for technical terms
157
- - Use > for important quotes or notes
158
- - Use LaTeX for mathematical expressions: \[ equation \] for blocks, \( equation \) for inline
159
 
160
- 3. Lists and Tables:
161
- - Use tables for comparisons or structured data
162
- - Use bullet points only for unordered lists
163
- - Use numbered lists only for sequences or priorities
 
164
 
165
- 4. Structure:
166
- - Start with a brief overview paragraph
167
- - Group related concepts under appropriate headers
168
- - Use short, focused paragraphs
169
- - End sections with a summary if needed
 
170
 
171
- 5. Visual Elements:
172
- - Add horizontal rules (---) between major sections
173
- - Use code blocks with language specification ```python
174
- - Include LaTeX diagrams when relevant
 
 
175
 
176
- Format the content to be both informative and visually appealing while maintaining professional documentation standards."""
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,