Quazim0t0 commited on
Commit
e3ecb0f
·
verified ·
1 Parent(s): dbbcf50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +35 -32
app.py CHANGED
@@ -10,61 +10,64 @@ agent = CodeAgent(
10
  )
11
 
12
  def process_text(content):
13
- """Handle text processing without database dependency"""
14
- # Get CSV conversion from AI
15
- csv_output = agent.run(f"Convert to CSV:\n{content}\nReturn ONLY valid CSV:")
16
-
17
- # Process CSV data
18
  try:
19
- df = pd.read_csv(StringIO(csv_output), keep_default_na=False)
20
- return df.head(10), csv_output
21
- except Exception as e:
22
- return pd.DataFrame(), f"Error processing data: {str(e)}"
23
 
24
  def analyze_content(full_text):
25
- """Analyze text content for reporting"""
26
- analysis_prompt = f"""
27
- Analyze this text and generate a structured report:
28
  {full_text[:5000]}
29
 
30
  Include:
31
- 1. Key themes/topics
32
- 2. Important entities
33
- 3. Summary statistics
34
- 4. Recommendations/insights
35
 
36
  Use markdown formatting with headers.
37
- """
38
- return agent.run(analysis_prompt)
39
 
40
- def handle_upload(*files):
41
- """Process uploaded files"""
42
  all_dfs = []
43
- full_text = ""
44
 
45
  for file in files:
46
- content = file.read().decode()
47
- df, _ = process_text(content)
48
- all_dfs.append(df)
49
- full_text += f"\n\n--- {file.name} ---\n{content}"
 
 
 
50
 
51
  combined_df = pd.concat(all_dfs, ignore_index=True) if all_dfs else pd.DataFrame()
52
- report = analyze_content(full_text) if full_text else "No content to analyze"
53
 
54
  return combined_df, report
55
 
56
  with gr.Blocks() as demo:
57
- gr.Markdown("# Document Analysis System")
58
 
59
  with gr.Row():
60
- file_input = gr.File(file_count="multiple", file_types=[".txt"])
61
- upload_btn = gr.Button("Process Files", variant="primary")
 
 
 
 
62
 
63
  with gr.Row():
64
- data_output = gr.Dataframe(label="Structured Data Preview")
65
  report_output = gr.Markdown(label="Analysis Report")
66
 
67
- upload_btn.click(
68
  handle_upload,
69
  inputs=file_input,
70
  outputs=[data_output, report_output]
@@ -74,5 +77,5 @@ if __name__ == "__main__":
74
  demo.launch(
75
  server_name="0.0.0.0",
76
  server_port=7860,
77
- show_error=True
78
  )
 
10
  )
11
 
12
  def process_text(content):
13
+ """Convert text content to structured format"""
14
+ csv_output = agent.run(f"Convert to CSV (include headers):\n{content}\nOutput ONLY valid CSV:")
 
 
 
15
  try:
16
+ return pd.read_csv(StringIO(csv_output), keep_default_na=False)
17
+ except:
18
+ return pd.DataFrame()
 
19
 
20
  def analyze_content(full_text):
21
+ """Generate comprehensive report"""
22
+ report = agent.run(f"""
23
+ Create detailed analysis report from this data:
24
  {full_text[:5000]}
25
 
26
  Include:
27
+ 1. Key insights and patterns
28
+ 2. Important statistics
29
+ 3. Actionable recommendations
30
+ 4. Potential anomalies
31
 
32
  Use markdown formatting with headers.
33
+ """)
34
+ return report
35
 
36
+ def handle_upload(files):
37
+ """Handle multiple file uploads correctly"""
38
  all_dfs = []
39
+ full_content = []
40
 
41
  for file in files:
42
+ try:
43
+ content = file.name + "\n" + file.read().decode()
44
+ df = process_text(content)
45
+ all_dfs.append(df)
46
+ full_content.append(content)
47
+ except Exception as e:
48
+ print(f"Error processing {file.name}: {str(e)}")
49
 
50
  combined_df = pd.concat(all_dfs, ignore_index=True) if all_dfs else pd.DataFrame()
51
+ report = analyze_content("\n\n".join(full_content)) if full_content else "No valid content found"
52
 
53
  return combined_df, report
54
 
55
  with gr.Blocks() as demo:
56
+ gr.Markdown("# Multi-Document Analyzer")
57
 
58
  with gr.Row():
59
+ file_input = gr.File(
60
+ file_count="multiple",
61
+ file_types=[".txt"],
62
+ label="Upload Text Files"
63
+ )
64
+ process_btn = gr.Button("Analyze Documents", variant="primary")
65
 
66
  with gr.Row():
67
+ data_output = gr.Dataframe(label="Structured Data Preview", wrap=True)
68
  report_output = gr.Markdown(label="Analysis Report")
69
 
70
+ process_btn.click(
71
  handle_upload,
72
  inputs=file_input,
73
  outputs=[data_output, report_output]
 
77
  demo.launch(
78
  server_name="0.0.0.0",
79
  server_port=7860,
80
+ share=True # Enable public sharing
81
  )