added analytics

This commit is contained in:
belviskhoremk
2026-02-23 17:24:41 +00:00
parent 07c4c55072
commit 2ed998058e
5 changed files with 543 additions and 105 deletions

View File

@@ -8,14 +8,62 @@ import logging
logger = logging.getLogger(__name__)
router = APIRouter(prefix="/marketplace", tags=["Marketplace"])
# ═══════════════════════════════════════════════════════════════════════════════
# CATEGORIES & INDUSTRIES — Expanded to support all business types:
# Individuals, small businesses (restaurants, barbershops, malls, phone shops),
# and large enterprises.
# ═══════════════════════════════════════════════════════════════════════════════
CATEGORIES = [
"Customer Support", "Sales", "FAQ", "E-commerce",
"Healthcare", "Finance", "Education", "HR", "Legal", "Other"
# What the chatbot does
"Customer Support",
"Sales Assistant",
"FAQ & Knowledge Base",
"Appointment Booking",
"Order & Delivery Tracking",
"Product Recommendations",
"Lead Generation",
"Onboarding & Training",
"Feedback & Surveys",
"Personal Assistant",
"Consultation",
"Other",
]
INDUSTRIES = [
"Technology", "E-commerce", "Healthcare", "Finance",
"Education", "Legal", "Real Estate", "Hospitality", "Retail", "Other"
# Small businesses / Local services
"Restaurant & Food",
"Beauty & Barbershop",
"Retail & Shopping",
"Phone & Electronics",
"Automotive & Repair",
"Fitness & Wellness",
"Cleaning & Home Services",
"Photography & Events",
# Professional services
"Healthcare & Medical",
"Legal & Law",
"Finance & Insurance",
"Real Estate",
"Accounting & Tax",
# Tech & Digital
"Technology & SaaS",
"E-commerce",
"Agency & Marketing",
# Education & Non-profit
"Education & Training",
"Non-profit & NGO",
# Large scale
"Hospitality & Hotels",
"Travel & Tourism",
"Manufacturing",
"Logistics & Transport",
"Agriculture",
"Government",
# Personal
"Personal Brand",
"Freelancer & Consultant",
"Other",
]