mirror of
http://88.130.71.182:3000/BlitTech/contexta_be.git
synced 2026-06-13 08:56:20 +00:00
added analytics
This commit is contained in:
@@ -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",
|
||||
]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user