Update app.py
Browse files
app.py
CHANGED
@@ -362,7 +362,7 @@ def generate_detailed_documentation(file_contents, functionality_description):
|
|
362 |
'
|
363 |
Function Documentation:
|
364 |
For each file that contains functions functions INVOLVED in the enhanced user-specified functiionality:
|
365 |
-
|
366 |
For each function in the file:
|
367 |
- '<function name>':
|
368 |
- Summary: <Description of the function's purpose>
|
@@ -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("```"):
|
404 |
output = output[3:-3].strip()
|
405 |
|
406 |
# Remove all pairs of **
|
|
|
362 |
'
|
363 |
Function Documentation:
|
364 |
For each file that contains functions functions INVOLVED in the enhanced user-specified functiionality:
|
365 |
+
<<file name and extension>> (Gemini, include the outer <> around file name and extension, exclude this bracketed comment)
|
366 |
For each function in the file:
|
367 |
- '<function name>':
|
368 |
- Summary: <Description of the function's purpose>
|
|
|
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 **
|