Quazim0t0 commited on
Commit
db33f59
·
verified ·
1 Parent(s): bb29d2e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -23
app.py CHANGED
@@ -9,12 +9,12 @@ agent = CodeAgent(
9
 
10
  def analyze_content(file_paths, progress=gr.Progress()):
11
  """Process files and generate comprehensive report with progress tracking"""
12
- progress(0, desc="Starting analysis...")
13
  full_content = []
14
 
15
- # Read files with progress
 
16
  for i, path in enumerate(file_paths):
17
- progress(i/len(file_paths), f"Reading {path.split('/')[-1]}...")
18
  try:
19
  with open(path, 'r', encoding='utf-8') as f:
20
  content = f.read()
@@ -22,8 +22,8 @@ def analyze_content(file_paths, progress=gr.Progress()):
22
  except Exception as e:
23
  return f"Error processing {path}: {str(e)}"
24
 
25
- # Generate report with progress
26
- progress(0.8, "Analyzing content with AI...")
27
  report = agent.run(f"""
28
  Analyze these documents and create a detailed report:
29
 
@@ -38,7 +38,7 @@ def analyze_content(file_paths, progress=gr.Progress()):
38
  Use professional markdown formatting with headings and bullet points.
39
  """)
40
 
41
- progress(1.0, "Analysis complete!")
42
  return report
43
 
44
  with gr.Blocks() as demo:
@@ -52,7 +52,6 @@ with gr.Blocks() as demo:
52
  label="Upload Documents"
53
  )
54
  process_btn = gr.Button("Generate Report", variant="primary")
55
- status = gr.Textbox(label="Processing Status", interactive=False)
56
 
57
  with gr.Column(scale=2, variant="panel"):
58
  gr.Markdown("## Analysis Report")
@@ -61,28 +60,19 @@ with gr.Blocks() as demo:
61
  label="",
62
  show_label=False
63
  )
 
64
 
65
- @process_btn.click(
 
66
  inputs=file_input,
67
- outputs=[status, report_output]
 
68
  )
69
- def process_files(files):
70
- if not files:
71
- return "No files uploaded", ""
72
-
73
- file_paths = [f.name for f in files]
74
-
75
- def update_progress(progress):
76
- return lambda p: progress(p)
77
-
78
- return (
79
- gr.Progress().track() | # Progress indicator
80
- analyze_content(file_paths)
81
- )
82
 
83
  if __name__ == "__main__":
84
  demo.launch(
85
  server_name="0.0.0.0",
86
  server_port=7860,
87
- share=True
 
88
  )
 
9
 
10
  def analyze_content(file_paths, progress=gr.Progress()):
11
  """Process files and generate comprehensive report with progress tracking"""
 
12
  full_content = []
13
 
14
+ # Track file reading progress
15
+ progress(0, desc="Starting analysis...")
16
  for i, path in enumerate(file_paths):
17
+ progress(i/len(file_paths), desc=f"Reading {path.split('/')[-1]}...")
18
  try:
19
  with open(path, 'r', encoding='utf-8') as f:
20
  content = f.read()
 
22
  except Exception as e:
23
  return f"Error processing {path}: {str(e)}"
24
 
25
+ # Track analysis progress
26
+ progress(0.8, desc="Analyzing content with AI...")
27
  report = agent.run(f"""
28
  Analyze these documents and create a detailed report:
29
 
 
38
  Use professional markdown formatting with headings and bullet points.
39
  """)
40
 
41
+ progress(1.0, desc="Analysis complete!")
42
  return report
43
 
44
  with gr.Blocks() as demo:
 
52
  label="Upload Documents"
53
  )
54
  process_btn = gr.Button("Generate Report", variant="primary")
 
55
 
56
  with gr.Column(scale=2, variant="panel"):
57
  gr.Markdown("## Analysis Report")
 
60
  label="",
61
  show_label=False
62
  )
63
+ status = gr.Textbox(label="Processing Status", visible=False)
64
 
65
+ process_btn.click(
66
+ fn=analyze_content,
67
  inputs=file_input,
68
+ outputs=[report_output, status],
69
+ show_progress="minimal"
70
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
71
 
72
  if __name__ == "__main__":
73
  demo.launch(
74
  server_name="0.0.0.0",
75
  server_port=7860,
76
+ share=True,
77
+ ssr=False # Disable experimental server-side rendering
78
  )