Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

DadJoke Loader

This loader fetches a joke from icanhazdadjoke.

Usage

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.