mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 15:29:36 +00:00
- Rename all SalesMatic references to Dealix (ديل اي اكس) across frontend, backend, configs, and SVG logos - Add complete automated affiliate recruitment system with: - Job posting templates (Arabic/English) with ad variations for social media, LinkedIn, job boards - Full onboarding package: welcome guide, company profile, step-by-step guide, FAQ (60+ Q&A), targets & earnings - Sales scripts: phone calls, WhatsApp, in-person, email templates, objection handling (15+), closing techniques - Targeting guides: social media, AI tools, Google, LinkedIn, local business, referral strategies - Legal agreements: freelance contract, employment offer (10+ deals/month auto-hire), commission structure - AI chatbot for affiliates: config, knowledge base, conversation flows - Add professional sector presentations for 10 industries (healthcare, real estate, restaurants, retail, education, beauty, automotive, legal, construction, e-commerce) - Add Gold Guarantee system (30-day full refund) with terms and conditions - Add AI Sales Agents system: lead generation, WhatsApp/voice/email outreach, lead scoring, auto-booking - Add backend: Affiliate & AI Conversation models, API endpoints, Celery worker tasks - Update landing page with Gold Guarantee, Affiliate CTA, and AI Agents sections https://claude.ai/code/session_01KnJgK7RwyeCvRZTRThHtfU
25 lines
1.0 KiB
Python
25 lines
1.0 KiB
Python
from app.models.base import BaseModel, TenantModel
|
|
from app.models.tenant import Tenant
|
|
from app.models.user import User
|
|
from app.models.lead import Lead
|
|
from app.models.customer import Customer
|
|
from app.models.deal import Deal
|
|
from app.models.activity import Activity
|
|
from app.models.message import Message
|
|
from app.models.proposal import Proposal
|
|
from app.models.notification import Notification
|
|
from app.models.subscription import Subscription
|
|
from app.models.template import IndustryTemplate
|
|
from app.models.property import Property
|
|
from app.models.audit_log import AuditLog
|
|
from app.models.affiliate import AffiliateMarketer, AffiliatePerformance, AffiliateDeal
|
|
from app.models.ai_conversation import AIConversation, AutoBooking
|
|
|
|
__all__ = [
|
|
"BaseModel", "TenantModel", "Tenant", "User", "Lead", "Customer",
|
|
"Deal", "Activity", "Message", "Proposal", "Notification",
|
|
"Subscription", "IndustryTemplate", "Property", "AuditLog",
|
|
"AffiliateMarketer", "AffiliatePerformance", "AffiliateDeal",
|
|
"AIConversation", "AutoBooking",
|
|
]
|