This commit is contained in:
oficcejo
2026-02-27 12:08:00 +08:00
parent bce3b9645f
commit f3af15ddc8
25 changed files with 203 additions and 132 deletions
+5 -4
View File
@@ -6,15 +6,16 @@
from deepseek_client import DeepSeekClient
from typing import Dict, Any
import time
import config
class SectorStrategyAgents:
"""板块策略AI智能体集合"""
def __init__(self, model="deepseek-chat"):
self.model = model
self.deepseek_client = DeepSeekClient(model=model)
print(f"[智策] AI智能体系统初始化 (模型: {model})")
def __init__(self, model=None):
self.model = model or config.DEFAULT_MODEL_NAME
self.deepseek_client = DeepSeekClient(model=self.model)
print(f"[智策] AI智能体系统初始化 (模型: {self.model})")
def macro_strategist_agent(self, market_data: Dict, news_data: list) -> Dict[str, Any]:
"""