TradingAgents/tradingagents/prediction_market/agents/__init__.py

14 lines
1.3 KiB
Python

from tradingagents.prediction_market.agents.analysts.event_analyst import create_event_analyst
from tradingagents.prediction_market.agents.analysts.odds_analyst import create_odds_analyst
from tradingagents.prediction_market.agents.analysts.information_analyst import create_information_analyst
from tradingagents.prediction_market.agents.analysts.sentiment_analyst import create_sentiment_analyst
from tradingagents.prediction_market.agents.researchers.yes_researcher import create_yes_researcher
from tradingagents.prediction_market.agents.researchers.no_researcher import create_no_researcher
from tradingagents.prediction_market.agents.managers.research_manager import create_pm_research_manager
from tradingagents.prediction_market.agents.managers.risk_manager import create_pm_risk_manager
from tradingagents.prediction_market.agents.trader.pm_trader import create_pm_trader
from tradingagents.prediction_market.agents.risk_mgmt.aggressive_debator import create_pm_aggressive_debator
from tradingagents.prediction_market.agents.risk_mgmt.conservative_debator import create_pm_conservative_debator
from tradingagents.prediction_market.agents.risk_mgmt.neutral_debator import create_pm_neutral_debator
from tradingagents.prediction_market.agents.utils.pm_agent_utils import create_msg_delete