From 5c7c5e091e362a60bebdc205b5e954db513209b3 Mon Sep 17 00:00:00 2001 From: mogita Date: Sat, 16 Aug 2025 16:58:35 +0800 Subject: [PATCH] refactor: clean up imports --- cli/main.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/cli/main.py b/cli/main.py index 876c9be5..9e78cd9a 100644 --- a/cli/main.py +++ b/cli/main.py @@ -1,4 +1,4 @@ -import datetime +from datetime import datetime import typer from pathlib import Path from functools import wraps @@ -23,7 +23,13 @@ load_dotenv() from tradingagents.graph.trading_graph import TradingAgentsGraph from tradingagents.default_config import DEFAULT_CONFIG from cli.models import AnalystType -from cli.utils import * +from cli.utils import ( + select_analysts, + select_research_depth, + select_shallow_thinking_agent, + select_deep_thinking_agent, + select_llm_provider +) console = Console()