Recovered state: integrated TrendSurferAgent, restored frontend/backend files, and cleaned up recovery scripts

This commit is contained in:
ajaysi
2026-02-08 13:56:57 +05:30
parent 1db10ccd0f
commit e404a86502
333 changed files with 42223 additions and 10875 deletions

View File

@@ -0,0 +1,73 @@
"""
ALwrity Autonomous Marketing Agents Module
This module provides autonomous marketing agents built on txtai's native agent framework.
The agents work together to monitor market conditions, analyze competitor activities,
and execute coordinated marketing strategies without human intervention.
"""
# Core agent framework
from .core_agent_framework import (
BaseALwrityAgent,
AgentAction,
AgentPerformance,
StrategyOrchestratorAgent
)
# Market signal detection
from .market_signal_detector import (
MarketSignal,
MarketSignalDetector,
MarketTrendAnalyzer
)
# Performance monitoring
from .performance_monitor import (
PerformanceMonitor,
performance_monitor,
PerformanceMetric,
AgentPerformanceMetrics
)
# Specialized agents
from .specialized_agents import (
ContentGuardianAgent,
LinkGraphAgent,
StrategyArchitectAgent,
ContentStrategyAgent,
CompetitorResponseAgent,
SEOOptimizationAgent,
SocialAmplificationAgent
)
from .trend_surfer_agent import TrendSurferAgent
# Agent Orchestrator
from .agent_orchestrator import (
ALwrityAgentOrchestrator,
orchestration_service
)
__all__ = [
'BaseALwrityAgent',
'AgentAction',
'AgentPerformance',
'StrategyOrchestratorAgent',
'MarketSignal',
'MarketSignalDetector',
'MarketTrendAnalyzer',
'PerformanceMonitor',
'performance_monitor',
'PerformanceMetric',
'AgentPerformanceMetrics',
'ContentGuardianAgent',
'LinkGraphAgent',
'StrategyArchitectAgent',
'ContentStrategyAgent',
'CompetitorResponseAgent',
'SEOOptimizationAgent',
'SocialAmplificationAgent',
'TrendSurferAgent',
'ALwrityAgentOrchestrator',
'orchestration_service'
]