DrishtiSharma commited on
Commit
4cd4c7f
·
verified ·
1 Parent(s): 4e6f903

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -149,13 +149,15 @@ write = Task(
149
 
150
  analyse = Task(
151
  description=(
152
- "1. Perform statistical analysis of patent filing trends, innovation hot spots, and growth projections.\n"
153
- "2. Identify top regions, key players, and technology combinations.\n"
154
- "3. Generate visualizations such as heatmaps, bar charts, and multi-line charts for trends.\n"
155
- "4. Provide structured output with fields 'Category' and 'Values' for visualization.\n"
156
- "5. Collaborate with the Planner and Writer to align on data needs."
 
 
157
  ),
158
- expected_output="A detailed statistical analysis with actionable insights, heatmaps, and trends.",
159
  agent=analyst
160
  )
161
 
 
149
 
150
  analyse = Task(
151
  description=(
152
+ "1. Perform a detailed statistical analysis of patent filing trends, innovation hot spots, and growth projections.\n"
153
+ "2. Identify and list the top assignees, prominent inventors, and leading companies in the transparent antenna industry.\n"
154
+ "3. Generate structured output in a list of dictionaries with 'Category' and 'Values' fields.\n"
155
+ "4. Example Output Format:\n"
156
+ "[{'Category': 'Top Assignees', 'Values': ['Company A', 'Company B']}, "
157
+ "{'Category': 'Top Inventors', 'Values': ['Inventor X', 'Inventor Y']}]\n"
158
+ "5. Generate visualizations such as heatmaps, bar charts, and multi-line charts for trends."
159
  ),
160
+ expected_output="A structured list of dictionaries ready for visualization and tabular reporting.",
161
  agent=analyst
162
  )
163