Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -10,61 +10,64 @@ agent = CodeAgent(
|
|
10 |
)
|
11 |
|
12 |
def process_text(content):
|
13 |
-
"""
|
14 |
-
|
15 |
-
csv_output = agent.run(f"Convert to CSV:\n{content}\nReturn ONLY valid CSV:")
|
16 |
-
|
17 |
-
# Process CSV data
|
18 |
try:
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
return pd.DataFrame(), f"Error processing data: {str(e)}"
|
23 |
|
24 |
def analyze_content(full_text):
|
25 |
-
"""
|
26 |
-
|
27 |
-
|
28 |
{full_text[:5000]}
|
29 |
|
30 |
Include:
|
31 |
-
1. Key
|
32 |
-
2. Important
|
33 |
-
3.
|
34 |
-
4.
|
35 |
|
36 |
Use markdown formatting with headers.
|
37 |
-
"""
|
38 |
-
return
|
39 |
|
40 |
-
def handle_upload(
|
41 |
-
"""
|
42 |
all_dfs = []
|
43 |
-
|
44 |
|
45 |
for file in files:
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
|
|
|
|
|
|
50 |
|
51 |
combined_df = pd.concat(all_dfs, ignore_index=True) if all_dfs else pd.DataFrame()
|
52 |
-
report = analyze_content(
|
53 |
|
54 |
return combined_df, report
|
55 |
|
56 |
with gr.Blocks() as demo:
|
57 |
-
gr.Markdown("# Document
|
58 |
|
59 |
with gr.Row():
|
60 |
-
file_input = gr.File(
|
61 |
-
|
|
|
|
|
|
|
|
|
62 |
|
63 |
with gr.Row():
|
64 |
-
data_output = gr.Dataframe(label="Structured Data Preview")
|
65 |
report_output = gr.Markdown(label="Analysis Report")
|
66 |
|
67 |
-
|
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 |
-
|
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 |
)
|