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, List
import time
import config
class LonghubangAgents:
"""龙虎榜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 youzi_behavior_analyst(self, longhubang_data: str, summary: Dict) -> Dict[str, Any]:
"""