Update app.py
Browse files
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
|
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 **
|