mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-20 22:03:52 +00:00
Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com>
30 lines
838 B
Python
30 lines
838 B
Python
"""
|
|
This tool allows agents to interact with the NASA API, specifically
|
|
the the NASA Image & Video Library and Exoplanet
|
|
"""
|
|
|
|
from typing import Optional
|
|
|
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
|
from langchain_core.tools import BaseTool
|
|
from pydantic import Field
|
|
|
|
from langchain_community.utilities.nasa import NasaAPIWrapper
|
|
|
|
|
|
class NasaAction(BaseTool): # type: ignore[override]
|
|
"""Tool that queries the Atlassian Jira API."""
|
|
|
|
api_wrapper: NasaAPIWrapper = Field(default_factory=NasaAPIWrapper)
|
|
mode: str
|
|
name: str = ""
|
|
description: str = ""
|
|
|
|
def _run(
|
|
self,
|
|
instructions: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the NASA API to run an operation."""
|
|
return self.api_wrapper.run(self.mode, instructions)
|