mirror of
https://github.com/hwchase17/langchain
synced 2024-11-02 09:40:22 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
68 lines
2.4 KiB
Python
68 lines
2.4 KiB
Python
from typing import Iterable, Optional
|
|
|
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
|
from langchain_core.documents import Document
|
|
from langchain_core.tools import BaseTool
|
|
from requests.exceptions import HTTPError, ReadTimeout
|
|
from urllib3.exceptions import ConnectionError
|
|
|
|
from langchain_community.document_loaders.web_base import WebBaseLoader
|
|
|
|
|
|
class YahooFinanceNewsTool(BaseTool):
|
|
"""Tool that searches financial news on Yahoo Finance."""
|
|
|
|
name: str = "yahoo_finance_news"
|
|
description: str = (
|
|
"Useful for when you need to find financial news "
|
|
"about a public company. "
|
|
"Input should be a company ticker. "
|
|
"For example, AAPL for Apple, MSFT for Microsoft."
|
|
)
|
|
top_k: int = 10
|
|
"""The number of results to return."""
|
|
|
|
def _run(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the Yahoo Finance News tool."""
|
|
try:
|
|
import yfinance
|
|
except ImportError:
|
|
raise ImportError(
|
|
"Could not import yfinance python package. "
|
|
"Please install it with `pip install yfinance`."
|
|
)
|
|
company = yfinance.Ticker(query)
|
|
try:
|
|
if company.isin is None:
|
|
return f"Company ticker {query} not found."
|
|
except (HTTPError, ReadTimeout, ConnectionError):
|
|
return f"Company ticker {query} not found."
|
|
|
|
links = []
|
|
try:
|
|
links = [n["link"] for n in company.news if n["type"] == "STORY"]
|
|
except (HTTPError, ReadTimeout, ConnectionError):
|
|
if not links:
|
|
return f"No news found for company that searched with {query} ticker."
|
|
if not links:
|
|
return f"No news found for company that searched with {query} ticker."
|
|
loader = WebBaseLoader(web_paths=links)
|
|
docs = loader.load()
|
|
result = self._format_results(docs, query)
|
|
if not result:
|
|
return f"No news found for company that searched with {query} ticker."
|
|
return result
|
|
|
|
@staticmethod
|
|
def _format_results(docs: Iterable[Document], query: str) -> str:
|
|
doc_strings = [
|
|
"\n".join([doc.metadata["title"], doc.metadata["description"]])
|
|
for doc in docs
|
|
if query in doc.metadata["description"] or query in doc.metadata["title"]
|
|
]
|
|
return "\n\n".join(doc_strings)
|