mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-08 07:57:07 +00:00
Signed-off-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Dan O'Donovan <dan.odonovan@gmail.com> Co-authored-by: Tom Daniel Grande <tomdgrande@gmail.com> Co-authored-by: Grande <Tom.Daniel.Grande@statsbygg.no> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Tomaz Bratanic <bratanic.tomaz@gmail.com> Co-authored-by: ZhangShenao <15201440436@163.com> Co-authored-by: Friso H. Kingma <fhkingma@gmail.com> Co-authored-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Morgante Pell <morgantep@google.com>
55 lines
1.8 KiB
Python
55 lines
1.8 KiB
Python
"""Util that calls several NASA APIs."""
|
|
|
|
import json
|
|
|
|
import requests
|
|
from pydantic import BaseModel
|
|
|
|
IMAGE_AND_VIDEO_LIBRARY_URL = "https://images-api.nasa.gov"
|
|
|
|
|
|
class NasaAPIWrapper(BaseModel):
|
|
"""Wrapper for NASA API."""
|
|
|
|
def get_media(self, query: str) -> str:
|
|
params = json.loads(query)
|
|
if params.get("q"):
|
|
queryText = params["q"]
|
|
params.pop("q")
|
|
else:
|
|
queryText = ""
|
|
response = requests.get(
|
|
IMAGE_AND_VIDEO_LIBRARY_URL + "/search?q=" + queryText, params=params
|
|
)
|
|
data = response.json()
|
|
return data
|
|
|
|
def get_media_metadata_manifest(self, query: str) -> str:
|
|
response = requests.get(IMAGE_AND_VIDEO_LIBRARY_URL + "/asset/" + query)
|
|
return response.json()
|
|
|
|
def get_media_metadata_location(self, query: str) -> str:
|
|
response = requests.get(IMAGE_AND_VIDEO_LIBRARY_URL + "/metadata/" + query)
|
|
return response.json()
|
|
|
|
def get_video_captions_location(self, query: str) -> str:
|
|
response = requests.get(IMAGE_AND_VIDEO_LIBRARY_URL + "/captions/" + query)
|
|
return response.json()
|
|
|
|
def run(self, mode: str, query: str) -> str:
|
|
if mode == "search_media":
|
|
output = self.get_media(query)
|
|
elif mode == "get_media_metadata_manifest":
|
|
output = self.get_media_metadata_manifest(query)
|
|
elif mode == "get_media_metadata_location":
|
|
output = self.get_media_metadata_location(query)
|
|
elif mode == "get_video_captions_location":
|
|
output = self.get_video_captions_location(query)
|
|
else:
|
|
output = f"ModeError: Got unexpected mode {mode}."
|
|
|
|
try:
|
|
return json.dumps(output)
|
|
except Exception:
|
|
return str(output)
|