system-prompts-and-models-o.../salesflow-saas/backend/app/services/ai/__init__.py
Claude b2b82c2df1
fix: Wire all new systems into project — models, services, workers
Integration fixes:
- models/__init__.py: add PDPL + Sequence model exports
- services/__init__.py: add SequenceEngine, ConsentManager, SecurityGate, etc.
- ai/__init__.py: add SalesAgent + AgentContext exports
- celery_app.py: add sequence_tasks to workers + 4 new beat schedules
- NEW: sequence_tasks.py — Celery tasks for sequence processing, cleanup, autopilot

https://claude.ai/code/session_01LsnvBa7HwF5hs99VZbgLGj
2026-04-11 07:51:53 +00:00

33 lines
1.1 KiB
Python

"""
Dealix AI Engine — Arabic-first AI services for Saudi CRM.
Provides NLP, lead scoring, conversation intelligence, message writing, and forecasting.
"""
from app.services.ai.arabic_nlp import ArabicNLPService, LanguageDetection, IntentResult, EntityResult, SentimentResult
from app.services.ai.lead_scoring import LeadScoringEngine, LeadScoreResult, ScoreBreakdown
from app.services.ai.conversation_intelligence import ConversationIntelligence, ConversationInsight
from app.services.ai.message_writer import MessageWriter, MessageDraft
from app.services.ai.forecasting import SalesForecastingEngine, ForecastResult
from app.services.ai.sales_agent import SalesAgent, AgentContext, AgentResponse, ConversationState
__all__ = [
"ArabicNLPService",
"LanguageDetection",
"IntentResult",
"EntityResult",
"SentimentResult",
"LeadScoringEngine",
"LeadScoreResult",
"ScoreBreakdown",
"ConversationIntelligence",
"ConversationInsight",
"MessageWriter",
"MessageDraft",
"SalesForecastingEngine",
"ForecastResult",
"SalesAgent",
"AgentContext",
"AgentResponse",
"ConversationState",
]