Quazim0t0 commited on
Commit
0604637
·
verified ·
1 Parent(s): 97d5125

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -14
app.py CHANGED
@@ -1,4 +1,5 @@
1
  import gradio as gr
 
2
  from smolagents import CodeAgent, HfApiModel
3
 
4
  # Initialize the AI agent
@@ -7,21 +8,27 @@ agent = CodeAgent(
7
  model=HfApiModel(model_id="Qwen/Qwen2.5-Coder-32B-Instruct"),
8
  )
9
 
10
- def analyze_content(file_paths, progress=gr.Progress()):
11
- """Process files and generate report with progress tracking"""
12
- full_content = []
 
13
 
14
- progress(0, desc="Starting analysis...")
15
- for i, path in enumerate(file_paths):
16
- progress(i/len(file_paths), desc=f"Reading {path.split('/')[-1]}...")
 
 
17
  try:
18
  with open(path, 'r', encoding='utf-8') as f:
19
  content = f.read()
20
  full_content.append(f"## {path.split('/')[-1]}\n{content}\n")
21
  except Exception as e:
22
- return f"Error processing {path}: {str(e)}", ""
 
23
 
24
- progress(0.8, desc="Analyzing content...")
 
 
25
  report = agent.run(f"""
26
  Analyze these documents:
27
  {"".join(full_content)[:10000]}
@@ -30,13 +37,12 @@ def analyze_content(file_paths, progress=gr.Progress()):
30
  1. Key insights
31
  2. Important patterns
32
  3. Actionable recommendations
33
- 4. Supporting evidence
34
 
35
  Use markdown formatting with headers.
36
  """)
37
 
38
- progress(1.0, desc="Analysis complete!")
39
- return report, "Process completed successfully"
40
 
41
  with gr.Blocks() as demo:
42
  gr.Markdown("# Document Analysis System")
@@ -50,18 +56,18 @@ with gr.Blocks() as demo:
50
  process_btn = gr.Button("Generate Report", variant="primary")
51
 
52
  report_output = gr.Markdown(label="Analysis Report")
53
- status = gr.Textbox(label="Status", visible=False)
54
 
55
  process_btn.click(
56
  fn=analyze_content,
57
  inputs=file_input,
58
  outputs=[report_output, status],
59
- show_progress="full"
60
  )
61
 
62
  if __name__ == "__main__":
63
  demo.launch(
64
  server_name="0.0.0.0",
65
  server_port=7860,
66
- share=True # Public link enabled
67
  )
 
1
  import gradio as gr
2
+ import time
3
  from smolagents import CodeAgent, HfApiModel
4
 
5
  # Initialize the AI agent
 
8
  model=HfApiModel(model_id="Qwen/Qwen2.5-Coder-32B-Instruct"),
9
  )
10
 
11
+ def analyze_content(file_paths):
12
+ """Process files and generate report with status updates"""
13
+ status = "Starting analysis..."
14
+ yield "", status
15
 
16
+ full_content = []
17
+ for path in file_paths:
18
+ status = f"Reading {path.split('/')[-1]}..."
19
+ yield "", status
20
+
21
  try:
22
  with open(path, 'r', encoding='utf-8') as f:
23
  content = f.read()
24
  full_content.append(f"## {path.split('/')[-1]}\n{content}\n")
25
  except Exception as e:
26
+ yield f"Error processing {path}: {str(e)}", ""
27
+ return
28
 
29
+ status = "Analyzing content with AI..."
30
+ yield "", status
31
+
32
  report = agent.run(f"""
33
  Analyze these documents:
34
  {"".join(full_content)[:10000]}
 
37
  1. Key insights
38
  2. Important patterns
39
  3. Actionable recommendations
 
40
 
41
  Use markdown formatting with headers.
42
  """)
43
 
44
+ status = "Analysis complete!"
45
+ yield report, status
46
 
47
  with gr.Blocks() as demo:
48
  gr.Markdown("# Document Analysis System")
 
56
  process_btn = gr.Button("Generate Report", variant="primary")
57
 
58
  report_output = gr.Markdown(label="Analysis Report")
59
+ status = gr.Textbox(label="Processing Status", interactive=False)
60
 
61
  process_btn.click(
62
  fn=analyze_content,
63
  inputs=file_input,
64
  outputs=[report_output, status],
65
+ show_progress="hidden"
66
  )
67
 
68
  if __name__ == "__main__":
69
  demo.launch(
70
  server_name="0.0.0.0",
71
  server_port=7860,
72
+ share=True
73
  )