update
This commit is contained in:
@@ -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]:
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user