Created
September 17, 2023 15:21
-
-
Save neelabalan/f874e69043aba7a865f33a84f6a0b149 to your computer and use it in GitHub Desktop.
web base loader langchain https://twitter.com/realJacobJed/status/1689433877268549632
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from langchain.document_loaders import WebBaseLoader | |
from langchain.indexes import VectorstoreIndexCreator | |
loader = WebBaseLoader('https://jj09.net/simple-path-to-weight-loss/') | |
index = VectorstoreIndexCreator().from_loaders([loader]) | |
print(index.query('how many colories should I consume to lose weight')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment