Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,4 @@
|
|
1 |
import gradio as gr
|
2 |
-
import pandas as pd
|
3 |
-
from io import StringIO
|
4 |
from smolagents import CodeAgent, HfApiModel
|
5 |
|
6 |
# Initialize the AI agent
|
@@ -9,73 +7,56 @@ agent = CodeAgent(
|
|
9 |
model=HfApiModel(model_id="Qwen/Qwen2.5-Coder-32B-Instruct"),
|
10 |
)
|
11 |
|
12 |
-
def
|
13 |
-
"""
|
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
|
42 |
try:
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
full_content.append(content)
|
47 |
except Exception as e:
|
48 |
-
|
49 |
|
50 |
-
|
51 |
-
|
|
|
|
|
52 |
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
with gr.Blocks() as demo:
|
56 |
-
gr.Markdown("#
|
57 |
|
58 |
with gr.Row():
|
59 |
file_input = gr.File(
|
60 |
file_count="multiple",
|
61 |
file_types=[".txt"],
|
62 |
-
label="Upload
|
63 |
)
|
64 |
-
process_btn = gr.Button("
|
65 |
|
66 |
-
|
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 |
-
|
72 |
inputs=file_input,
|
73 |
-
outputs=
|
74 |
)
|
75 |
|
76 |
if __name__ == "__main__":
|
77 |
demo.launch(
|
78 |
server_name="0.0.0.0",
|
79 |
server_port=7860,
|
80 |
-
share=True
|
81 |
)
|
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
from smolagents import CodeAgent, HfApiModel
|
3 |
|
4 |
# Initialize the AI agent
|
|
|
7 |
model=HfApiModel(model_id="Qwen/Qwen2.5-Coder-32B-Instruct"),
|
8 |
)
|
9 |
|
10 |
+
def analyze_content(file_paths):
|
11 |
+
"""Process files and generate comprehensive report"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
full_content = []
|
13 |
|
14 |
+
for path in file_paths:
|
15 |
try:
|
16 |
+
with open(path, 'r', encoding='utf-8') as f:
|
17 |
+
content = f.read()
|
18 |
+
full_content.append(f"--- {path.split('/')[-1]} ---\n{content}")
|
|
|
19 |
except Exception as e:
|
20 |
+
return f"Error processing {path}: {str(e)}"
|
21 |
|
22 |
+
report = agent.run(f"""
|
23 |
+
Analyze these documents and create a detailed report:
|
24 |
+
|
25 |
+
{''.join(full_content)[:10000]} # First 10k characters
|
26 |
|
27 |
+
Report should include:
|
28 |
+
1. Key themes and patterns
|
29 |
+
2. Important relationships
|
30 |
+
3. Contextual insights
|
31 |
+
4. Actionable recommendations
|
32 |
+
|
33 |
+
Use professional markdown formatting with headings.
|
34 |
+
""")
|
35 |
+
|
36 |
+
return report
|
37 |
|
38 |
with gr.Blocks() as demo:
|
39 |
+
gr.Markdown("# Document Analysis System")
|
40 |
|
41 |
with gr.Row():
|
42 |
file_input = gr.File(
|
43 |
file_count="multiple",
|
44 |
file_types=[".txt"],
|
45 |
+
label="Upload Documents"
|
46 |
)
|
47 |
+
process_btn = gr.Button("Generate Report", variant="primary")
|
48 |
|
49 |
+
report_output = gr.Markdown(label="Analysis Report")
|
|
|
|
|
50 |
|
51 |
process_btn.click(
|
52 |
+
fn=analyze_content,
|
53 |
inputs=file_input,
|
54 |
+
outputs=report_output
|
55 |
)
|
56 |
|
57 |
if __name__ == "__main__":
|
58 |
demo.launch(
|
59 |
server_name="0.0.0.0",
|
60 |
server_port=7860,
|
61 |
+
share=True
|
62 |
)
|