31 lines
936 B
YAML
31 lines
936 B
YAML
# Brand Monitor Configuration
|
|
# Edit this file for the brand you want to track.
|
|
|
|
brand:
|
|
name: "AcmeCorp" # Your brand name
|
|
aliases: ["Acme", "ACME", "acme corp"] # Alternative spellings
|
|
website: "https://acmecorp.com"
|
|
industry: "SaaS"
|
|
description: "Enterprise cloud platform for project management"
|
|
|
|
monitoring:
|
|
services: # LLM services to query
|
|
- chatgpt
|
|
- gemini
|
|
- perplexity
|
|
- grok
|
|
scan_interval_hours: 6 # How often to scan
|
|
queries: # Prompts to run against each LLM
|
|
- "best {industry} for startups"
|
|
- "top {industry} platforms {year}"
|
|
- "{brand} alternatives"
|
|
- "{brand} review"
|
|
|
|
alerts:
|
|
negative_threshold_pct: 20 # Alert if >20% negative mentions
|
|
notify_on: [negative_spike, competitor_appears]
|
|
|
|
output:
|
|
reports_dir: "reports/"
|
|
data_dir: "data/"
|