From 0b257c7707308de41534b71ce61a596b69ad473d Mon Sep 17 00:00:00 2001 From: liuzhuoya Date: Tue, 14 Apr 2026 18:28:32 +0800 Subject: [PATCH] feat: add siliconflow to the list of OpenAI-compatible providers --- tradingagents/llm_clients/factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tradingagents/llm_clients/factory.py b/tradingagents/llm_clients/factory.py index a9a7e83d..66b6b4ce 100644 --- a/tradingagents/llm_clients/factory.py +++ b/tradingagents/llm_clients/factory.py @@ -8,7 +8,7 @@ from .azure_client import AzureOpenAIClient # Providers that use the OpenAI-compatible chat completions API _OPENAI_COMPATIBLE = ( - "openai", "xai", "deepseek", "qwen", "glm", "ollama", "openrouter", + "openai", "xai", "deepseek", "qwen", "glm", "ollama", "openrouter", "siliconflow" )