Update app.py
Browse files
app.py
CHANGED
@@ -447,67 +447,48 @@ def generate_documentation_page():
|
|
447 |
# Prompt user for functionality description
|
448 |
functionality = st.text_area(
|
449 |
"Describe the functionality",
|
450 |
-
placeholder="e.g.,
|
451 |
)
|
452 |
|
453 |
# Button to start analyzing functionality
|
454 |
if st.button("Analyze"):
|
455 |
if functionality.strip():
|
456 |
-
#
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
)
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
# Generate documentation using Gemini
|
493 |
-
documentation = generate_detailed_documentation(file_contents, functionality)
|
494 |
-
|
495 |
-
# Save the documentation in session state for exporting and viewing
|
496 |
-
st.session_state.generated_documentation = documentation
|
497 |
-
|
498 |
-
# Display the final documentation
|
499 |
-
progress_bar.progress(100) # Fill the progress bar to 100%
|
500 |
-
time.sleep(1) # Brief pause
|
501 |
-
progress_bar.empty() # Remove the progress bar
|
502 |
-
progress_message.empty() # Clear the message
|
503 |
-
|
504 |
-
st.success("Documentation generated successfully!")
|
505 |
-
st.text_area("Generated Documentation", documentation, height=600)
|
506 |
-
|
507 |
-
except Exception as e:
|
508 |
-
st.error(f"An error occurred: {e}")
|
509 |
-
else:
|
510 |
-
st.error("Project folder not found. Ensure the GitHub repository was cloned successfully.")
|
511 |
else:
|
512 |
st.error("Please enter the functionality to analyze.")
|
513 |
|
@@ -558,6 +539,7 @@ def generate_documentation_page():
|
|
558 |
|
559 |
|
560 |
|
|
|
561 |
# Helper function to generate PDF
|
562 |
def generate_pdf(documentation, pdf_path):
|
563 |
pdf = FPDF()
|
|
|
447 |
# Prompt user for functionality description
|
448 |
functionality = st.text_area(
|
449 |
"Describe the functionality",
|
450 |
+
placeholder="e.g., Explain the function of the file `main.py`",
|
451 |
)
|
452 |
|
453 |
# Button to start analyzing functionality
|
454 |
if st.button("Analyze"):
|
455 |
if functionality.strip():
|
456 |
+
# Show spinning wheel and message
|
457 |
+
with st.spinner("Analyzing. Please wait..."):
|
458 |
+
time.sleep(1) # Simulate brief delay
|
459 |
+
|
460 |
+
# Get the path of the current project
|
461 |
+
user_folder = os.path.join("user_projects", st.session_state.username)
|
462 |
+
project_folder = os.path.join(user_folder, st.session_state.current_project)
|
463 |
+
|
464 |
+
if os.path.exists(project_folder):
|
465 |
+
try:
|
466 |
+
# Gather all file paths in the project directory
|
467 |
+
file_paths = read_project_files(project_folder)
|
468 |
+
|
469 |
+
# Read file contents
|
470 |
+
file_contents = read_files(file_paths)
|
471 |
+
|
472 |
+
# Simulate processing time based on lines of code
|
473 |
+
total_lines = sum(len(content.splitlines()) for content in file_contents.values())
|
474 |
+
estimated_time = (total_lines / 2500) * 60 # 1 minute per 2500 lines
|
475 |
+
estimated_time = max(estimated_time, 2) # Ensure at least 2 seconds for the spinner
|
476 |
+
time.sleep(estimated_time)
|
477 |
+
|
478 |
+
# Generate documentation using Gemini
|
479 |
+
documentation = generate_detailed_documentation(file_contents, functionality)
|
480 |
+
|
481 |
+
# Save the documentation in session state for exporting and viewing
|
482 |
+
st.session_state.generated_documentation = documentation
|
483 |
+
|
484 |
+
# Display the final documentation
|
485 |
+
st.success("Documentation generated successfully!")
|
486 |
+
st.text_area("Generated Documentation", documentation, height=600)
|
487 |
+
|
488 |
+
except Exception as e:
|
489 |
+
st.error(f"An error occurred: {e}")
|
490 |
+
else:
|
491 |
+
st.error("Project folder not found. Ensure the GitHub repository was cloned successfully.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
492 |
else:
|
493 |
st.error("Please enter the functionality to analyze.")
|
494 |
|
|
|
539 |
|
540 |
|
541 |
|
542 |
+
|
543 |
# Helper function to generate PDF
|
544 |
def generate_pdf(documentation, pdf_path):
|
545 |
pdf = FPDF()
|