minor fix

This commit is contained in:
luohy15
2025-09-26 23:25:33 +08:00
parent 0ab323c2c6
commit 8b04ec307f
7 changed files with 17 additions and 17 deletions
@@ -1,6 +1,6 @@
from langchain_core.tools import tool
from typing import Annotated
from tradingagents.dataflows.interface import route_to_vender
from tradingagents.dataflows.interface import route_to_vendor
@tool
@@ -19,4 +19,4 @@ def get_stock_data(
Returns:
str: A formatted dataframe containing the stock price data for the specified ticker symbol in the specified date range.
"""
return route_to_vender("get_stock_data", symbol, start_date, end_date)
return route_to_vendor("get_stock_data", symbol, start_date, end_date)
@@ -1,6 +1,6 @@
from langchain_core.tools import tool
from typing import Annotated
from tradingagents.dataflows.interface import route_to_vender
from tradingagents.dataflows.interface import route_to_vendor
@tool
@@ -17,7 +17,7 @@ def get_fundamentals(
Returns:
str: A formatted report containing comprehensive fundamental data
"""
return route_to_vender("get_fundamentals", ticker, curr_date)
return route_to_vendor("get_fundamentals", ticker, curr_date)
@tool
@@ -36,7 +36,7 @@ def get_balance_sheet(
Returns:
str: A formatted report containing balance sheet data
"""
return route_to_vender("get_balance_sheet", ticker, freq, curr_date)
return route_to_vendor("get_balance_sheet", ticker, freq, curr_date)
@tool
@@ -55,7 +55,7 @@ def get_cashflow(
Returns:
str: A formatted report containing cash flow statement data
"""
return route_to_vender("get_cashflow", ticker, freq, curr_date)
return route_to_vendor("get_cashflow", ticker, freq, curr_date)
@tool
@@ -74,4 +74,4 @@ def get_income_statement(
Returns:
str: A formatted report containing income statement data
"""
return route_to_vender("get_income_statement", ticker, freq, curr_date)
return route_to_vendor("get_income_statement", ticker, freq, curr_date)
@@ -1,6 +1,6 @@
from langchain_core.tools import tool
from typing import Annotated
from tradingagents.dataflows.interface import route_to_vender
from tradingagents.dataflows.interface import route_to_vendor
@tool
def get_news(
@@ -18,7 +18,7 @@ def get_news(
Returns:
str: A formatted string containing news data
"""
return route_to_vender("get_news", ticker, start_date, end_date)
return route_to_vendor("get_news", ticker, start_date, end_date)
@tool
def get_global_news(
@@ -36,7 +36,7 @@ def get_global_news(
Returns:
str: A formatted string containing global news data
"""
return route_to_vender("get_global_news", curr_date, look_back_days, limit)
return route_to_vendor("get_global_news", curr_date, look_back_days, limit)
@tool
def get_insider_sentiment(
@@ -52,7 +52,7 @@ def get_insider_sentiment(
Returns:
str: A report of insider sentiment data
"""
return route_to_vender("get_insider_sentiment", ticker, curr_date)
return route_to_vendor("get_insider_sentiment", ticker, curr_date)
@tool
def get_insider_transactions(
@@ -68,4 +68,4 @@ def get_insider_transactions(
Returns:
str: A report of insider transaction data
"""
return route_to_vender("get_insider_transactions", ticker, curr_date)
return route_to_vendor("get_insider_transactions", ticker, curr_date)
@@ -1,6 +1,6 @@
from langchain_core.tools import tool
from typing import Annotated
from tradingagents.dataflows.interface import route_to_vender
from tradingagents.dataflows.interface import route_to_vendor
@tool
def get_indicators(
@@ -20,4 +20,4 @@ def get_indicators(
Returns:
str: A formatted dataframe containing the technical indicators for the specified ticker symbol and indicator.
"""
return route_to_vender("get_indicators", symbol, indicator, curr_date, look_back_days)
return route_to_vendor("get_indicators", symbol, indicator, curr_date, look_back_days)