From 7d1d0ba8c3bb8b90e128a1f97c4c7ce09ee678d0 Mon Sep 17 00:00:00 2001 From: Jesse Zhang Date: Mon, 6 Mar 2023 14:28:36 -0800 Subject: [PATCH] Update README.md --- loader_hub/papers/pubmed/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader_hub/papers/pubmed/README.md b/loader_hub/papers/pubmed/README.md index 55ead42e..ca367f08 100644 --- a/loader_hub/papers/pubmed/README.md +++ b/loader_hub/papers/pubmed/README.md @@ -12,7 +12,7 @@ from llama_index import download_loader PubmedReader = download_loader("PubmedReader") loader = PubmedReader() -documents = loader.load_data(search_query=['amyloidosis']) +documents = loader.load_data(search_query='amyloidosis') ``` This loader is designed to be used as a way to load data into [LlamaIndex](https://github.com/jerryjliu/gpt_index/tree/main/gpt_index) and/or subsequently used as a Tool in a [LangChain](https://github.com/hwchase17/langchain) Agent. See [here](https://github.com/emptycrown/llama-hub/tree/main) for examples.