DrishtiSharma commited on
Commit
0c604ed
Β·
verified Β·
1 Parent(s): b551803

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -44,8 +44,18 @@ scraper_agent = Agent(
44
 
45
  # Define the analysis function
46
  def analyze_content(content):
47
- """Analyzes the scraped content for key points."""
48
- summary = f"Summary of content: {content[:1000]}..."
 
 
 
 
 
 
 
 
 
 
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