refactor: remove stale imports, use configurable results path (#499)

This commit is contained in:
Yijia-Xiao
2026-04-04 07:35:35 +00:00
parent bdc5fc62d3
commit bdb9c29d44
16 changed files with 15 additions and 49 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
# TradingAgents/graph/signal_processing.py
from langchain_openai import ChatOpenAI
from typing import Any
class SignalProcessor:
"""Processes trading signals to extract actionable decisions."""
def __init__(self, quick_thinking_llm: ChatOpenAI):
def __init__(self, quick_thinking_llm: Any):
"""Initialize with an LLM for processing."""
self.quick_thinking_llm = quick_thinking_llm