JSenkCC commited on
Commit
b8a7ddb
·
verified ·
1 Parent(s): f4e2ba5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- \<<file name and extension>\<
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 **