mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
Frontend: - page.tsx: Switch to PremiumLanding (3D hero + Arabic pricing) - dashboard/page.tsx: Add Pipeline Kanban, Unified Inbox, Lead Score tabs with imports and nav items wired to new components Backend: - services/__init__.py: Export ALL services (21 new exports): CompanyTwin, DealRoom, DealTaxonomy, OperatingMode, ChannelRules, ConsentLedger, hermes_orchestrator, execution_router, shannon_security, observability_service, self_improvement_engine, feature_flags, local_inference, gstack, skill_governance, arabic_ops 0 broken imports. 0 unwired components. Full end-to-end integration. https://claude.ai/code/session_01LsnvBa7HwF5hs99VZbgLGj
113 lines
3.6 KiB
Python
113 lines
3.6 KiB
Python
"""
|
|
Dealix Services Layer
|
|
Business logic for all core platform operations.
|
|
"""
|
|
|
|
from app.services.auth_service import AuthService
|
|
from app.services.lead_service import LeadService
|
|
from app.services.deal_service import DealService
|
|
from app.services.company_service import CompanyService
|
|
from app.services.meeting_service import MeetingService
|
|
from app.services.affiliate_service import AffiliateService
|
|
from app.services.notification_service import NotificationService
|
|
from app.services.analytics_service import AnalyticsService
|
|
from app.services.trust_score_service import TrustScoreService
|
|
from app.services.sequence_engine import SequenceEngine
|
|
from app.services.pdpl import ConsentManager, DataRightsHandler
|
|
from app.services.tool_verification import ToolVerifier, tool_verifier
|
|
from app.services.security_gate import SecurityGate, security_gate
|
|
from app.services.territory_manager import TerritoryManager
|
|
from app.services.knowledge_brain import KnowledgeBrain, knowledge_brain
|
|
from app.services.tool_receipts import (
|
|
PreExecutionPolicy, pre_execution_policy,
|
|
ReceiptStore, receipt_store,
|
|
TrustAnalytics, trust_analytics,
|
|
)
|
|
from app.services.memory_engine import (
|
|
MemoryAdapter, FileMemoryAdapter, RedisMemoryAdapter,
|
|
MemoryEvaluator, memory_adapter, memory_evaluator,
|
|
create_memory_adapter,
|
|
)
|
|
from app.services.session_continuity import SessionContinuity, session_continuity
|
|
from app.services.strategic_deals import (
|
|
CompanyProfiler, DealMatcher, DealNegotiator, NegotiationStrategy, DealAgent,
|
|
CompanyTwin, CompanyTwinBuilder,
|
|
DealRoom, DealRoomService,
|
|
DealTaxonomyService, DEAL_TAXONOMY,
|
|
OperatingMode, ModeEnforcer, MODE_POLICIES,
|
|
ChannelRules, ConsentLedger,
|
|
)
|
|
from app.services.hermes_orchestrator import hermes_orchestrator
|
|
from app.services.execution_router import execution_router
|
|
from app.services.shannon_security import shannon_security
|
|
from app.services.observability import observability_service
|
|
from app.services.self_improvement import self_improvement_engine
|
|
from app.services.feature_flags import feature_flags
|
|
from app.services.local_inference import local_inference
|
|
from app.services.gstack_discipline import gstack
|
|
from app.services.skill_governance import skill_governance
|
|
from app.services.arabic_ops import arabic_ops
|
|
|
|
__all__ = [
|
|
"AuthService",
|
|
"LeadService",
|
|
"DealService",
|
|
"CompanyService",
|
|
"MeetingService",
|
|
"AffiliateService",
|
|
"NotificationService",
|
|
"AnalyticsService",
|
|
"TrustScoreService",
|
|
"SequenceEngine",
|
|
"ConsentManager",
|
|
"DataRightsHandler",
|
|
"ToolVerifier",
|
|
"tool_verifier",
|
|
"SecurityGate",
|
|
"security_gate",
|
|
"TerritoryManager",
|
|
"KnowledgeBrain",
|
|
"knowledge_brain",
|
|
"PreExecutionPolicy",
|
|
"pre_execution_policy",
|
|
"ReceiptStore",
|
|
"receipt_store",
|
|
"TrustAnalytics",
|
|
"trust_analytics",
|
|
"MemoryAdapter",
|
|
"FileMemoryAdapter",
|
|
"RedisMemoryAdapter",
|
|
"MemoryEvaluator",
|
|
"memory_adapter",
|
|
"memory_evaluator",
|
|
"create_memory_adapter",
|
|
"SessionContinuity",
|
|
"session_continuity",
|
|
"CompanyProfiler",
|
|
"DealMatcher",
|
|
"DealNegotiator",
|
|
"NegotiationStrategy",
|
|
"DealAgent",
|
|
"CompanyTwin",
|
|
"CompanyTwinBuilder",
|
|
"DealRoom",
|
|
"DealRoomService",
|
|
"DealTaxonomyService",
|
|
"DEAL_TAXONOMY",
|
|
"OperatingMode",
|
|
"ModeEnforcer",
|
|
"MODE_POLICIES",
|
|
"ChannelRules",
|
|
"ConsentLedger",
|
|
"hermes_orchestrator",
|
|
"execution_router",
|
|
"shannon_security",
|
|
"observability_service",
|
|
"self_improvement_engine",
|
|
"feature_flags",
|
|
"local_inference",
|
|
"gstack",
|
|
"skill_governance",
|
|
"arabic_ops",
|
|
]
|