joshuarauh commited on
Commit
ea5683e
·
verified ·
1 Parent(s): 9f8e253

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -13
app.py CHANGED
@@ -624,19 +624,9 @@ Please provide:
624
  5. Finally, if and only if the numerical score is less than 90 out of 100, present a complete revised solution to which you would award a score of 100.
625
  The complete revised solution if you provide one must show ALL steps and be fully self-contained.
626
 
627
- Important: When writing mathematical expressions, use these formatting rules re LaTeX
628
- - Use $ around inline math expressions. NEVER use parentheses or brackets
629
- * CORRECT: The solution shows that $x = 5$ and $y = 3$
630
- * WRONG: The solution shows that (x = 5) and (y = 3)
631
- - Display equations get their own lines with $$ $$:
632
- * CORRECT:
633
- $$f(x) = x^2 + 2x + 1$$
634
- $$g(x) = 2x + 3$$
635
- * WRONG:
636
- (f(x) = x^2 + 2x + 1)
637
- [g(x) = 2x + 3]
638
  - Put each solution step on its own line in $$ $$
639
- - DO NOT use backslah backslash begin{{aligned}} or similar environments
640
  - For currency amounts in dollars, write out the word dollars instead of using $
641
  * Example: 1000 dollars
642
  - make sure there are never unmatched dollar signs as that will ruin the LaTeX rendering
@@ -649,7 +639,9 @@ Format your response with clear headers and bullet points."""
649
  messages=[
650
  {
651
  "role": "assistant",
652
- "content": "I am an expert mathematics professor who grades student solutions carefully and accurately."
 
 
653
  },
654
  {
655
  "role": "user",
 
624
  5. Finally, if and only if the numerical score is less than 90 out of 100, present a complete revised solution to which you would award a score of 100.
625
  The complete revised solution if you provide one must show ALL steps and be fully self-contained.
626
 
627
+ Important:
 
 
 
 
 
 
 
 
 
 
628
  - Put each solution step on its own line in $$ $$
629
+ - DO NOT use begin{{aligned}} or similar environments
630
  - For currency amounts in dollars, write out the word dollars instead of using $
631
  * Example: 1000 dollars
632
  - make sure there are never unmatched dollar signs as that will ruin the LaTeX rendering
 
639
  messages=[
640
  {
641
  "role": "assistant",
642
+ "content": "I am an expert mathematics professor who grades student solutions using LaTeX formatting.
643
+ When writing inline math, I always write math using proper LaTeX $ $ delimiters - NEVER the parentheses or brackets that some others use, NEVER the so-called LaTeX bracket notation.
644
+ I use $$ $$ for displayed equations."
645
  },
646
  {
647
  "role": "user",