mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Fix volcengine yfinance confliction (#2386)
### What problem does this PR solve? #2379 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -62,15 +62,8 @@ class YahooFinance(ComponentBase, ABC):
|
||||
yohoo_res.append({"content": "info:\n" + pd.Series(msft.info).to_markdown() + "\n"})
|
||||
if self._param.history:
|
||||
yohoo_res.append({"content": "history:\n" + msft.history().to_markdown() + "\n"})
|
||||
if self._param.count:
|
||||
yohoo_res.append({"content": "count:\n" + msft.get_shares_full().to_markdown() + "\n"})
|
||||
if self._param.financials:
|
||||
yohoo_res.append({"content": "calendar:\n" + pd.DataFrame(msft.calendar).to_markdown + "\n"})
|
||||
yohoo_res.append({"content": "sec_filings:\n" + pd.DataFrame(msft.sec_filings).to_markdown() + "\n"})
|
||||
if self._param.income_stmt:
|
||||
yohoo_res.append({"content": "income statement:\n" + msft.income_stmt.to_markdown() + "\n"})
|
||||
yohoo_res.append(
|
||||
{"content": "quarterly income statement:\n" + msft.quarterly_income_stmt.to_markdown() + "\n"})
|
||||
yohoo_res.append({"content": "calendar:\n" + pd.DataFrame(msft.calendar).to_markdown() + "\n"})
|
||||
if self._param.balance_sheet:
|
||||
yohoo_res.append({"content": "balance sheet:\n" + msft.balance_sheet.to_markdown() + "\n"})
|
||||
yohoo_res.append(
|
||||
|
||||
Reference in New Issue
Block a user