Update README.md

This commit is contained in:
Jesse Zhang 2023-03-06 14:28:36 -08:00 committed by GitHub
parent c4e0ad298f
commit 7d1d0ba8c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.