7317fbe012
- New AgentPipeline model with JSONB pipeline_data for stages/leads/summary
- AgentOrchestrator service chains DiscoveryService search→analyze→outreach→auto-save
- 3 new API endpoints: POST /agent/start, GET /agent/pipelines, GET /agent/{id}
- Full Agent dashboard Vue component with stats, pipeline grid, leads table, outreach preview
- Sidebar redesigned with AI Agent as primary entry point
- Updated PROGRESS.md, AGENTS.md, DATABASE_SCHEMA.md with latest state
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
from .user import User, Product
|
|
from .customer import Customer, Conversation, Message
|
|
from .quotation import Quotation, QuotationItem
|
|
from .corpus import CorpusEntry
|
|
from .team import Team, TeamMember
|
|
from .analytics import UsageLog
|
|
from .notification import Notification
|
|
from .feedback import Feedback
|
|
from .subscription import Subscription
|
|
from .preference import PreferenceAnalysis, MarketingEffect
|
|
from .device import Device
|
|
from .followup import FollowupStrategy, FollowupLog
|
|
from .system_config import SystemConfig
|
|
from .translation_quota import TranslationQuota
|
|
from .certification import Certification, CertType, CertStatus
|
|
from .invoice import Invoice, InvoiceType, InvoiceStatus
|
|
from .referral import ReferralCode, Referral
|
|
from .search_provider import SearchProvider
|
|
from .discovery_record import DiscoveryRecord
|
|
from .ai_provider import AIProvider
|
|
from .payment_transaction import PaymentTransaction
|
|
from .credit_package import CreditPackage, SubscriptionPlan
|
|
from .user_credit import UserCredit
|
|
from .credit_consumption import CreditConsumption
|
|
from .credit_purchase import CreditPurchase
|
|
from .agent_pipeline import AgentPipeline
|
|
|
|
__all__ = [
|
|
"User", "Product",
|
|
"Customer", "Conversation", "Message",
|
|
"Quotation", "QuotationItem",
|
|
"Subscription",
|
|
"CorpusEntry",
|
|
"Notification",
|
|
"Team", "TeamMember",
|
|
"Feedback",
|
|
"PreferenceAnalysis", "MarketingEffect",
|
|
"FollowupStrategy", "FollowupLog",
|
|
"Certification", "Invoice", "InvoiceType", "InvoiceStatus",
|
|
"ReferralCode", "Referral",
|
|
"SearchProvider",
|
|
"DiscoveryRecord",
|
|
"AIProvider",
|
|
"PaymentTransaction",
|
|
"CreditPackage", "SubscriptionPlan",
|
|
"UserCredit",
|
|
"CreditConsumption",
|
|
"CreditPurchase",
|
|
"AgentPipeline",
|
|
]
|