AbdulHadi806 commited on
Commit
805a805
·
verified ·
1 Parent(s): 55e5fa2

added postprocess_output

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -10,6 +10,9 @@ def preprocess_infer_input(text):
10
  # Assuming the input is already a string, we don't need to access it as a dictionary
11
  return f"latex: {text}"
12
 
 
 
 
13
  def clean_generated_code(generated_code):
14
  # Remove unwanted parts
15
  print(':::generated_code::::', generated_code)
 
10
  # Assuming the input is already a string, we don't need to access it as a dictionary
11
  return f"latex: {text}"
12
 
13
+ def postprocess_output(text):
14
+ return text.replace('<newline>', '\n')
15
+
16
  def clean_generated_code(generated_code):
17
  # Remove unwanted parts
18
  print(':::generated_code::::', generated_code)