mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
92e52e89ca
Description: In this PR, I am adding a PolygonTickerNews Tool, which can be used to get the latest news for a given ticker / stock. Twitter handle: [@virattt](https://twitter.com/virattt)
10 lines
239 B
Python
10 lines
239 B
Python
"""Polygon IO tools."""
|
|
|
|
from langchain_community.tools.polygon.last_quote import PolygonLastQuote
|
|
from langchain_community.tools.polygon.ticker_news import PolygonTickerNews
|
|
|
|
__all__ = [
|
|
"PolygonLastQuote",
|
|
"PolygonTickerNews",
|
|
]
|