mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
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
33 lines
1.1 KiB
Python
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",
|
|
]
|