JSenkCC commited on
Commit
badcec3
·
verified ·
1 Parent(s): 7e56a1a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +38 -56
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., Displaying output to the screen",
451
  )
452
 
453
  # Button to start analyzing functionality
454
  if st.button("Analyze"):
455
  if functionality.strip():
456
- # Get the path of the current project
457
- user_folder = os.path.join("user_projects", st.session_state.username)
458
- project_folder = os.path.join(user_folder, st.session_state.current_project)
459
-
460
- if os.path.exists(project_folder):
461
- try:
462
- # Gather all file paths in the project directory
463
- file_paths = read_project_files(project_folder)
464
-
465
- # Read file contents
466
- file_contents = read_files(file_paths)
467
-
468
- # Calculate estimated time based on lines of code
469
- total_lines = sum(len(content.splitlines()) for content in file_contents.values())
470
- estimated_time = (total_lines / 2500) * 60 # 1 minute per 2500 lines
471
- estimated_time = max(estimated_time, 1) # Minimum 1 second for short tasks
472
-
473
- # Show progress bar and tracker
474
- progress_bar = st.progress(0)
475
- progress_message = st.empty()
476
-
477
- # Progress simulation
478
- start_time = time.time()
479
- for i in range(101):
480
- elapsed_time = time.time() - start_time
481
- progress = min(i, int((elapsed_time / estimated_time) * 100))
482
- progress_bar.progress(progress)
483
- time_remaining = max(estimated_time - elapsed_time, 0)
484
- progress_message.write(
485
- f"Estimated time remaining: {int(time_remaining)} seconds"
486
- )
487
- time.sleep(estimated_time / 100)
488
-
489
- if elapsed_time >= estimated_time:
490
- break
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()