mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2026-05-04 07:53:10 +03:00
- Add tradingagents/llm_clients/ with unified factory pattern - Support OpenAI, Anthropic, Google, xAI, OpenRouter, Ollama, vLLM - Replace direct LLM imports in trading_graph.py with create_llm_client() - Handle provider-specific params (reasoning_effort, thinking_config)
5 lines
128 B
Python
5 lines
128 B
Python
from .base_client import BaseLLMClient
|
|
from .factory import create_llm_client
|
|
|
|
__all__ = ["BaseLLMClient", "create_llm_client"]
|