This loader fetches a joke from icanhazdadjoke.
To use this loader, load it.
from llama_index import download_loader
DadJokeReader = download_loader("DadJokeReader")
loader = DadJokeReader()
documents = loader.load_data()This loader is designed to be used as a way to load data into LlamaIndex and/or subsequently used as a Tool in a LangChain Agent. See here for examples.