Compare commits

...

2 Commits

Author SHA1 Message Date
Lv, Qi
b2351de882 Merge branch 'main' of ssh://git.qubit.ltd:10022/lyman/Fundamental_Analysis 2025-12-01 02:05:13 +08:00
Lv, Qi
15cdfb12e0 feat: fix provider test endpoints and update deployment scripts
- Finnhub: Add missing /test endpoint
- AlphaVantage: Fix test endpoint deserialization (handle null api_url)
- Mock Provider: Add /test endpoint and fix Zodios validation error by adding Mock enum
- Deployment: Remove Mock Provider from production deployment script
- Infrastructure: Add production Dockerfiles and compose configs
2025-12-01 02:05:00 +08:00

View File

@ -26,7 +26,7 @@ impl PersistenceClient {
pub async fn get_llm_providers_config(&self) -> Result<LlmProvidersConfig> { pub async fn get_llm_providers_config(&self) -> Result<LlmProvidersConfig> {
let url = format!("{}/api/v1/configs/llm_providers", self.base_url); let url = format!("{}/api/v1/configs/llm_providers", self.base_url);
info!("Fetching LLM providers config from {}", url);
let config = self let config = self
.client .client
.get(&url) .get(&url)