JSenkCC commited on
Commit
2b32ec5
·
verified ·
1 Parent(s): a254a07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -400,7 +400,7 @@ def process_gemini_output(output):
400
  str: The processed and cleaned output.
401
  """
402
  # Remove leading and trailing ```
403
- if (output.startswith("```") and output.endswith("```")) or (output.startswith("'''") and output.endswith("'''")):
404
  output = output[3:-3].strip()
405
 
406
  # Remove all pairs of **
 
400
  str: The processed and cleaned output.
401
  """
402
  # Remove leading and trailing ```
403
+ if output.startswith("```") or output.endswith("'''"):
404
  output = output[3:-3].strip()
405
 
406
  # Remove all pairs of **