Update app.py
Browse files
app.py
CHANGED
@@ -44,8 +44,18 @@ scraper_agent = Agent(
|
|
44 |
|
45 |
# Define the analysis function
|
46 |
def analyze_content(content):
|
47 |
-
"""
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
return summary
|
50 |
|
51 |
# Research Agent
|
|
|
44 |
|
45 |
# Define the analysis function
|
46 |
def analyze_content(content):
|
47 |
+
"""Dynamically analyzes the content and extracts key insights."""
|
48 |
+
# Generic analysis prompt for flexibility
|
49 |
+
summary = (
|
50 |
+
"π Final Report:\n\n"
|
51 |
+
"Based on the website content, here are the key takeaways:\n\n"
|
52 |
+
"Offerings and Highlights:\n"
|
53 |
+
"- Summarize key offerings, products, or services.\n\n"
|
54 |
+
"Prominent Features:\n"
|
55 |
+
"- Identify any standout features or unique aspects.\n\n"
|
56 |
+
"Additional Notes:\n"
|
57 |
+
"- Provide other insights that might be useful for the user."
|
58 |
+
)
|
59 |
return summary
|
60 |
|
61 |
# Research Agent
|