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

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>> (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>
@@ -544,7 +544,7 @@ def generate_pdf(documentation, pdf_path):
544
  # Add headers and content
545
  for line in documentation.splitlines():
546
  try:
547
- if line.startswith("- '") or line.startswith("<"):
548
  pdf.set_font("Courier", style="B", size=12) # Bold for specific lines
549
  pdf.multi_cell(0, 10, line.encode('latin-1', 'replace').decode('latin-1'))
550
  elif line.startswith("Project Summary:") or line.startswith("Functionality Summary:") or \
 
362
  '
363
  Function Documentation:
364
  For each file that contains functions functions INVOLVED in the enhanced user-specified functiionality:
365
+ File: <file name and extension>
366
  For each function in the file:
367
  - '<function name>':
368
  - Summary: <Description of the function's purpose>
 
544
  # Add headers and content
545
  for line in documentation.splitlines():
546
  try:
547
+ if line.startswith("- '") or line.startswith("File:"):
548
  pdf.set_font("Courier", style="B", size=12) # Bold for specific lines
549
  pdf.multi_cell(0, 10, line.encode('latin-1', 'replace').decode('latin-1'))
550
  elif line.startswith("Project Summary:") or line.startswith("Functionality Summary:") or \