mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
c2a614eddc
**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>
8 lines
138 B
Python
8 lines
138 B
Python
"""Polygon IO tools."""
|
|
|
|
from langchain_community.tools.polygon.last_quote import PolygonLastQuote
|
|
|
|
__all__ = [
|
|
"PolygonLastQuote",
|
|
]
|