langchain/libs/community/langchain_community/tools/polygon/__init__.py
Virat Singh c2a614eddc
community: Add PolygonLastQuote Tool and Toolkit (#15990)
**Description:** 
In this PR, I am adding a `PolygonLastQuote` Tool, which can be used to
get the latest price quote for a given ticker / stock.

Additionally, I've added a Polygon Toolkit, which we can use to
encapsulate future tools that we build for Polygon.

**Twitter handle:** [@virattt](https://twitter.com/virattt)

---------

Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
2024-01-21 15:08:55 -08:00

8 lines
138 B
Python

"""Polygon IO tools."""
from langchain_community.tools.polygon.last_quote import PolygonLastQuote
__all__ = [
"PolygonLastQuote",
]