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