id
stringlengths
14
16
source
stringlengths
49
117
text
stringlengths
16
2.73k
31db6fd93cd5-4
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/image_captions.html
/Users/saitosean/dev/langchain/.venv/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html from .autonotebook import tqdm as notebook_tqdm /Users/saitosean/dev/langchain/.venv/lib/python3....
a91d9cf4e771-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/jupyter_notebook.html
.ipynb .pdf Jupyter Notebook Jupyter Notebook# Jupyter Notebook (formerly IPython Notebook) is a web-based interactive computational environment for creating notebook documents. This notebook covers how to load data from a Jupyter notebook (.ipynb) into a format suitable by LangChain. from langchain.document_loaders im...
a91d9cf4e771-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/jupyter_notebook.html
[Document(page_content='\'markdown\' cell: \'[\'# Notebook\', \'\', \'This notebook covers how to load data from an .ipynb notebook into a format suitable by LangChain.\']\'\n\n \'code\' cell: \'[\'from langchain.document_loaders import NotebookLoader\']\'\n\n \'code\' cell: \'[\'loader = NotebookLoader("example_data/n...
614cab6c35e8-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/hacker_news.html
.ipynb .pdf Hacker News Hacker News# Hacker News (sometimes abbreviated as HN) is a social news website focusing on computer science and entrepreneurship. It is run by the investment fund and startup incubator Y Combinator. In general, content that can be submitted is defined as “anything that gratifies one’s intellect...
e1bee93fa80a-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/markdown.html
.ipynb .pdf Markdown Contents Retain Elements Markdown# Markdown is a lightweight markup language for creating formatted text using a plain-text editor. This covers how to load markdown documents into a document format that we can use downstream. # !pip install unstructured > /dev/null from langchain.document_loaders...
e1bee93fa80a-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/markdown.html
[Document(page_content="ð\x9f¦\x9cï¸\x8fð\x9f”\x97 LangChain\n\nâ\x9a¡ Building applications with LLMs through composability â\x9a¡\n\nLooking for the JS/TS version? Check out LangChain.js.\n\nProduction Support: As you move your LangChains into production, we'd love to offer more comprehensive support.\nPlease fill ou...
e1bee93fa80a-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/markdown.html
with?\n\nThere are six main areas that LangChain is designed to help with.\nThese are, in increasing order of complexity:\n\nð\x9f“\x83 LLMs and Prompts:\n\nThis includes prompt management, prompt optimization, a generic interface for all LLMs, and common utilities for working with LLMs.\n\nð\x9f”\x97 Chains:\n\nChains...
e1bee93fa80a-3
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/markdown.html
documentation.\n\nð\x9f’\x81 Contributing\n\nAs an open-source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.\n\nFor detailed information on how to contribute, see here.", metadata={'source': '....
e1bee93fa80a-4
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/markdown.html
Retain Elements# Under the hood, Unstructured creates different “elements” for different chunks of text. By default we combine those together, but you can easily keep that separation by specifying mode="elements". loader = UnstructuredMarkdownLoader(markdown_path, mode="elements") data = loader.load() data[0] Document(...
71901a513b87-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/subtitle.html
.ipynb .pdf Subtitle Subtitle# The SubRip file format is described on the Matroska multimedia container format website as “perhaps the most basic of all subtitle formats.” SubRip (SubRip Text) files are named with the extension .srt, and contain formatted lines of plain text in groups separated by a blank line. Subtitl...
d0b6260a65b4-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/apify_dataset.html
.ipynb .pdf Apify Dataset Contents Prerequisites An example with question answering Apify Dataset# Apify Dataset is a scaleable append-only storage with sequential access built for storing structured web scraping results, such as a list of products or Google SERPs, and then export them to various formats like JSON, C...
d0b6260a65b4-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/apify_dataset.html
from langchain.docstore.document import Document from langchain.document_loaders import ApifyDatasetLoader from langchain.indexes import VectorstoreIndexCreator loader = ApifyDatasetLoader( dataset_id="your-dataset-id", dataset_mapping_function=lambda item: Document( page_content=item["text"] or "", met...
97c12075e686-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/mediawikidump.html
.ipynb .pdf MediaWikiDump MediaWikiDump# MediaWiki XML Dumps contain the content of a wiki (wiki pages with all their revisions), without the site-related data. A XML dump does not create a full backup of the wiki database, the dump does not contain user accounts, images, edit logs, etc. This covers how to load a Media...
97c12075e686-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/mediawikidump.html
Document(page_content='{| class="article-table plainlinks" style="width:100%;"\n|- style="font-size:18px;"\n! style="padding:0px;" | Template documentation\n|-\n| Note: portions of the template sample may not be visible without values provided.\n|-\n| View or edit this documentation. (About template documentation)\n|-\...
97c12075e686-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/mediawikidump.html
Document(page_content='Description\nThis template is used to insert descriptions on template pages.\n\nSyntax\nAdd <noinclude></noinclude> at the end of the template page.\n\nAdd <noinclude></noinclude> to transclude an alternative page from the /doc subpage.\n\nUsage\n\nOn the Template page\nThis is the normal format ...
97c12075e686-3
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/mediawikidump.html
'Documentation/doc'}),
97c12075e686-4
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/mediawikidump.html
Document(page_content='Description\nA template link with a variable number of parameters (0-20).\n\nSyntax\n \n\nSource\nImproved version not needing t/piece subtemplate developed on Templates wiki see the list of authors. Copied here via CC-By-SA 3.0 license.\n\nExample\n\nCategory:General wiki templates\nCategory:Tem...
20fe574c7c3e-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/facebook_chat.html
.ipynb .pdf Facebook Chat Facebook Chat# Messenger is an American proprietary instant messaging app and platform developed by Meta Platforms. Originally developed as Facebook Chat in 2008, the company revamped its messaging service in 2010. This notebook covers how to load data from the Facebook Chats into a format tha...
20fe574c7c3e-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/facebook_chat.html
[Document(page_content='User 2 on 2023-02-05 03:46:11: Bye!\n\nUser 1 on 2023-02-05 03:43:55: Oh no worries! Bye\n\nUser 2 on 2023-02-05 03:24:37: No Im sorry it was my mistake, the blue one is not for sale\n\nUser 1 on 2023-02-05 03:05:40: I thought you were selling the blue one!\n\nUser 1 on 2023-02-05 03:05:09: Im n...
81ee3b332a1d-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/gitbook.html
.ipynb .pdf GitBook Contents Load from single GitBook page Load from all paths in a given GitBook GitBook# GitBook is a modern documentation platform where teams can document everything from products to internal knowledge bases and APIs. This notebook shows how to pull page data from any GitBook. from langchain.docum...
81ee3b332a1d-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/gitbook.html
loader = GitbookLoader("https://docs.gitbook.com", load_all_paths=True) all_pages_data = loader.load() Fetching text from https://docs.gitbook.com/ Fetching text from https://docs.gitbook.com/getting-started/overview Fetching text from https://docs.gitbook.com/getting-started/import Fetching text from https://docs.gitb...
81ee3b332a1d-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/gitbook.html
Fetching text from https://docs.gitbook.com/troubleshooting/hard-refresh Fetching text from https://docs.gitbook.com/troubleshooting/report-bugs Fetching text from https://docs.gitbook.com/troubleshooting/connectivity-issues Fetching text from https://docs.gitbook.com/troubleshooting/support print(f"fetched {len(all_pa...
81ee3b332a1d-3
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/gitbook.html
Document(page_content="Import\nFind out how to easily migrate your existing documentation and which formats are supported.\nThe import function allows you to migrate and unify existing documentation in GitBook. You can choose to import single or multiple pages although limits apply. \nPermissions\nAll members with edit...
81ee3b332a1d-4
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/gitbook.html
'https://docs.gitbook.com/getting-started/import', 'title': 'Import'}, lookup_index=0)
81ee3b332a1d-5
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/gitbook.html
previous Figma next Git Contents Load from single GitBook page Load from all paths in a given GitBook By Harrison Chase © Copyright 2023, Harrison Chase. Last updated on Jun 04, 2023.
97f0b10aa512-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/blockchain.html
.ipynb .pdf Blockchain Contents Overview Load NFTs into Document Loader Option 1: Ethereum Mainnet (default BlockchainType) Option 2: Polygon Mainnet Blockchain# Overview# The intention of this notebook is to provide a means of testing functionality in the Langchain Document Loader for Blockchain. Initially this Load...
97f0b10aa512-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/blockchain.html
Option 2: Polygon Mainnet# contractAddress = "0x448676ffCd0aDf2D85C1f0565e8dde6924A9A7D9" # Polygon Mainnet contract address blockchainType = BlockchainType.POLYGON_MAINNET blockchainLoader = BlockchainDocumentLoader(contract_address=contractAddress, blockchainType=blockcha...
e1edec8d576b-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
.ipynb .pdf Spreedly Spreedly# Spreedly is a service that allows you to securely store credit cards and use them to transact against any number of payment gateways and third party APIs. It does this by simultaneously providing a card tokenization/vault service as well as a gateway and receiver integration service. Paym...
e1edec8d576b-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
# Test the retriever spreedly_doc_retriever.get_relevant_documents("CRC") [Document(page_content='installment_grace_period_duration\nreference_data_code\ninvoice_number\ntax_management_indicator\noriginal_amount\ninvoice_amount\nvat_tax_rate\nmobile_remote_payment_type\ngratuity_amount\nmdd_field_1\nmdd_field_2\nmdd_fi...
e1edec8d576b-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
Document(page_content='BG\nBH\nBI\nBJ\nBM\nBN\nBO\nBR\nBS\nBT\nBW\nBY\nBZ\nCA\nCC\nCF\nCH\nCK\nCL\nCM\nCN\nCO\nCR\nCV\nCX\nCY\nCZ\nDE\nDJ\nDK\nDO\nDZ\nEC\nEE\nEG\nEH\nES\nET\nFI\nFJ\nFK\nFM\nFO\nFR\nGA\nGB\nGD\nGE\nGF\nGG\nGH\nGI\nGL\nGM\nGN\nGP\nGQ\nGR\nGT\nGU\nGW\nGY\nHK\nHM\nHN\nHR\nHT\nHU\nID\nIE\nIL\nIM\nIN\nIO\nI...
e1edec8d576b-3
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
LS\nLT\nLU\nLV\nMA\nMC\nMD\nME\nMG\nMH\nMK\nML\nMN\nMO\nMP\nMQ\nMR\nMS\nMT\nMU\nMV\nMW\nMX\nMY\nMZ\nNA\nNC\nNE\nNF\nNG\nNI\nNL\nNO\nNP\nNR\nNU\nNZ\nOM\nPA\nPE\nPF\nPH\nPK\nPL\nPN\nPR\nPT\nPW\nPY\nQA\nRE\nRO\nRS\nRU\nRW\nSA\nSB\nSC\nSE\nSG\nSI\nSK\nSL\nSM\nSN\nST\nSV\nSZ\nTC\nTD\nTF\nTG\nTH\nTJ\nTK\nTM\nTO\nTR\nTT\nTV\n...
e1edec8d576b-4
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
orted_cardtypes:
e1edec8d576b-5
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
visa\nmaster\namerican_express\ndiscover\njcb\nmaestro\nelo\nnaranja\ncabal\nunionpay\nregions: asia_pacific\neurope\nmiddle_east\nnorth_america\nhomepage: http://worldpay.com\ndisplay_api_url: https://secure.worldpay.com/jsp/merchant/xml/paymentService.jsp\ncompany_name: WorldPay', metadata={'source': 'https://core.sp...
e1edec8d576b-6
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
Document(page_content='gateway_specific_fields: receipt_email\nradar_session_id\nskip_radar_rules\napplication_fee\nstripe_account\nmetadata\nidempotency_key\nreason\nrefund_application_fee\nrefund_fee_amount\nreverse_transfer\naccount_id\ncustomer_id\nvalidate\nmake_default\ncancellation_reason\ncapture_method\nconfir...
e1edec8d576b-7
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
Document(page_content='mdd_field_57\nmdd_field_58\nmdd_field_59\nmdd_field_60\nmdd_field_61\nmdd_field_62\nmdd_field_63\nmdd_field_64\nmdd_field_65\nmdd_field_66\nmdd_field_67\nmdd_field_68\nmdd_field_69\nmdd_field_70\nmdd_field_71\nmdd_field_72\nmdd_field_73\nmdd_field_74\nmdd_field_75\nmdd_field_76\nmdd_field_77\nmdd...
e1edec8d576b-8
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
metadata={'source': 'https://core.spreedly.com/v1/gateways_options.json'})]
e1edec8d576b-9
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/spreedly.html
previous Slack next Stripe By Harrison Chase © Copyright 2023, Harrison Chase. Last updated on Jun 04, 2023.
2a552f84e6b5-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/discord.html
.ipynb .pdf Discord Discord# Discord is a VoIP and instant messaging social platform. Users have the ability to communicate with voice calls, video calls, text messaging, media and files in private chats or as part of communities called “servers”. A server is a collection of persistent chat rooms and voice channels whi...
b52525b718f5-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/google_bigquery.html
.ipynb .pdf Google BigQuery Contents Basic Usage Specifying Which Columns are Content vs Metadata Adding Source to Metadata Google BigQuery# Google BigQuery is a serverless and cost-effective enterprise data warehouse that works across clouds and scales with your data. BigQuery is a part of the Google Cloud Platform....
b52525b718f5-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/google_bigquery.html
[Document(page_content='id: 1\ndna_sequence: ATTCGA\norganism: Lokiarchaeum sp. (strain GC14_75).', lookup_str='', metadata={}, lookup_index=0), Document(page_content='id: 2\ndna_sequence: AGGCGA\norganism: Heimdallarchaeota archaeon (strain LC_2).', lookup_str='', metadata={}, lookup_index=0), Document(page_content='i...
b52525b718f5-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/google_bigquery.html
AS STRUCT 1 AS id, "ATTCGA" AS dna_sequence, "Lokiarchaeum sp. (strain GC14_75)." AS organism UNION ALL SELECT AS STRUCT 2 AS id, "AGGCGA" AS dna_sequence, "Heimdallarchaeota archaeon (strain LC_2)." AS organism UNION ALL SELECT AS STRUCT 3 AS id, "TCCGGA" AS dna_sequence, "Acidianus hospita...
5108fcac6beb-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/pandas_dataframe.html
.ipynb .pdf Pandas DataFrame Pandas DataFrame# This notebook goes over how to load data from a pandas DataFrame. #!pip install pandas import pandas as pd df = pd.read_csv('example_data/mlb_teams_2012.csv') df.head() Team "Payroll (millions)" "Wins" 0 Nationals 81.34 98 1 Reds 82.20 97 2 Yankees 197.96 95 3 Giants 117.6...
5108fcac6beb-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/pandas_dataframe.html
Document(page_content='Orioles', metadata={' "Payroll (millions)"': 81.43, ' "Wins"': 93}), Document(page_content='Rays', metadata={' "Payroll (millions)"': 64.17, ' "Wins"': 90}), Document(page_content='Angels', metadata={' "Payroll (millions)"': 154.49, ' "Wins"': 89}), Document(page_content='Tigers', metadata={' ...
5108fcac6beb-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/pandas_dataframe.html
Document(page_content='Mariners', metadata={' "Payroll (millions)"': 81.97, ' "Wins"': 75}), Document(page_content='Mets', metadata={' "Payroll (millions)"': 93.35, ' "Wins"': 74}), Document(page_content='Blue Jays', metadata={' "Payroll (millions)"': 75.48, ' "Wins"': 73}), Document(page_content='Royals', metadata=...
4eece4fb6565-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/bilibili.html
.ipynb .pdf BiliBili BiliBili# Bilibili is one of the most beloved long-form video sites in China. This loader utilizes the bilibili-api to fetch the text transcript from Bilibili. With this BiliBiliLoader, users can easily obtain the transcript of their desired video content on the platform. #!pip install bilibili-api...
8106f5dd1888-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/arxiv.html
.ipynb .pdf Arxiv Contents Installation Examples Arxiv# arXiv is an open-access archive for 2 million scholarly articles in the fields of physics, mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering and systems science, and economics. This notebook shows how t...
8106f5dd1888-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/arxiv.html
'Summary': 'Graphs on lattice points are studied whose edges come from a finite set of\nallowed moves of arbitrary length. We show that the diameter of these graphs on\nfibers of a fixed integer matrix can be bounded from above by a constant. We\nthen study the mixing behaviour of heat-bath random walks on these graphs...
31bc8adb22f0-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/unstructured_file.html
.ipynb .pdf Unstructured File Contents Retain Elements Define a Partitioning Strategy PDF Example Unstructured API Unstructured File# This notebook covers how to use Unstructured package to load files of many types. Unstructured currently supports loading of text files, powerpoints, html, pdfs, images, and more. # # ...
31bc8adb22f0-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/unstructured_file.html
[Document(page_content='Madam Speaker, Madam Vice President, our First Lady and Second Gentleman. Members of Congress and the Cabinet. Justices of the Supreme Court. My fellow Americans.', lookup_str='', metadata={'source': '../../state_of_the_union.txt'}, lookup_index=0), Document(page_content='Last year COVID-19 kep...
31bc8adb22f0-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/unstructured_file.html
docs = loader.load() docs[:5] [Document(page_content='1', lookup_str='', metadata={'source': 'layout-parser-paper-fast.pdf', 'filename': 'layout-parser-paper-fast.pdf', 'page_number': 1, 'category': 'UncategorizedText'}, lookup_index=0), Document(page_content='2', lookup_str='', metadata={'source': 'layout-parser-pape...
31bc8adb22f0-3
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/unstructured_file.html
Document(page_content='Zejiang Shen 1 ( (ea)\n ), Ruochen Zhang 2 , Melissa Dell 3 , Benjamin Charles Germain Lee 4 , Jacob Carlson 3 , and Weining Li 5', lookup_str='', metadata={'source': '../../layout-parser-paper.pdf'}, lookup_index=0), Document(page_content='Allen Institute for AI shannons@allenai.org', lookup_st...
31bc8adb22f0-4
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/unstructured_file.html
You can also batch multiple files through the Unstructured API in a single API using UnstructuredAPIFileLoader. loader = UnstructuredAPIFileLoader( file_path=filenames, api_key="FAKE_API_KEY", ) docs = loader.load() docs[0] Document(page_content='Lorem ipsum dolor sit amet.\n\nThis is a test email to use for un...
11c6b2fbdad5-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/odt.html
.ipynb .pdf Open Document Format (ODT) Open Document Format (ODT)# The Open Document Format for Office Applications (ODF), also known as OpenDocument, is an open file format for word processing documents, spreadsheets, presentations and graphics and using ZIP-compressed XML files. It was developed with the aim of provi...
1fcab3e04c06-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
.ipynb .pdf College Confidential College Confidential# College Confidential gives information on 3,800+ colleges and universities. This covers how to load College Confidential webpages into a document format that we can use downstream. from langchain.document_loaders import CollegeConfidentialLoader loader = CollegeCon...
1fcab3e04c06-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
[Document(page_content='\n\n\n\n\n\n\n\nA68FEB02-9D19-447C-B8BC-818149FD6EAF\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Media (2)\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nE45B8B13-33D4-450E-B7DB-F66EFE8F2097\n\n\n\n\n\n\n\n\n\nE45B8B13-33D4-450E-B7DB-F66EFE8F2097\n\n\n\n\n\n\n\n\n\n\n\n\n\...
1fcab3e04c06-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
many options for athletes. See them all and learn more about life at Brown on the Student Life page.\n\n\n\n2022 Brown Facts At-A-Glance\n\n\n\n\n\nAcademic Calendar\nOther\n\n\nOverall Acceptance Rate\n6%\n\n\nEarly Decision Acceptance Rate\n16%\n\n\nEarly Action Acceptance Rate\nEA not offered\n\n\nApplicants Submitt...
1fcab3e04c06-3
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
a good resource for understanding the value of a degree from Brown by providing a look on how job placement has gone for other grads. \nCheck with Brown directly, for information on any information on starting salaries for recent grads.\nBrown\'s Endowment\nAn endowment is the total value of a school\'s investments, do...
1fcab3e04c06-4
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
asking you for money.\nLearn more about Tuition and Financial Aid at Brown.\nBased on this information, does Brown seem like a good fit? Remember, a school that is perfect for one person may be a terrible fit for someone else! So ask yourself: Is Brown a good school for you?\nIf Brown University seems like a school you...
1fcab3e04c06-5
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
(401) 863-2378\n \n\n Website\n \n\n Virtual Tour\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBrown Application Deadline\n\n\n\nFirst-Year Applications are Due\n\nJan 5\n\nTransfer Applications are Due\n\nMar 1\n\n\...
1fcab3e04c06-6
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
\n\n \n Check the school website \n for more information about deadlines for specific programs or special admissions programs\n \n \n\n\n\n\n\n\nBrown ACT Scores\n\n\n\n\nic_reflect\n\n\n\n\n\n\n\n\nACT Range\n\n\n \n 33 - 35\n ...
1fcab3e04c06-7
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
\n \n\n\n\nic_reflect\n\n\n\n\n\n\n\n\nMath SAT Range\n\n\n \n Not available\n \n \n\n\n\nic_reflect\n\n\n\n\n\n\n\n\nReading SAT Range\n\n\n \n 740 - 800\n \n ...
1fcab3e04c06-8
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
State\n\n\nOut-of-State\n\n\n\n\nState Tuition\n\n\n\n $62,680\n \n\n\n\n $62,680\n \n\n\n\n\nFees\n\n\n\n $2,466\n \n\n\n\n $2,466\n ...
1fcab3e04c06-9
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
$1,300\n \n\n\n\n $1,300\n \n\n\n\n\n\n Total (Before Financial Aid):\n \n\n\n\n $82,286\n \n\n\n\n $82,286\n ...
1fcab3e04c06-10
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
96% percent of students attend school \n full-time, \n 6% percent are from RI and \n 94% percent of students are from other states.\n \n\n\n\n\n\n None\n \n\n\n\n\nUndergraduate Enrollment\n\n\n\n 96%\n \nFul...
1fcab3e04c06-11
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
\nOut-of-State\n\n\n\n\n\n\n\n Data Source: IPEDs and Peterson\'s Databases © 2022 Peterson\'s LLC All rights reserved\n \n', lookup_str='', metadata={'source': 'https://www.collegeconfidential.com/colleges/brown-university/'}, lookup_index=0)]
1fcab3e04c06-12
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/college_confidential.html
previous BiliBili next Gutenberg By Harrison Chase © Copyright 2023, Harrison Chase. Last updated on Jun 04, 2023.
07b86921342e-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/whatsapp_chat.html
.ipynb .pdf WhatsApp Chat WhatsApp Chat# WhatsApp (also called WhatsApp Messenger) is a freeware, cross-platform, centralized instant messaging (IM) and voice-over-IP (VoIP) service. It allows users to send text and voice messages, make voice and video calls, and share images, documents, user locations, and other conte...
efd229913cd4-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/stripe.html
.ipynb .pdf Stripe Stripe# Stripe is an Irish-American financial services and software as a service (SaaS) company. It offers payment-processing software and application programming interfaces for e-commerce websites and mobile applications. This notebook covers how to load data from the Stripe REST API into a format t...
5861fd13bda0-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
.ipynb .pdf CSV Contents Customizing the csv parsing and loading Specify a column to identify the document source CSV# A comma-separated values (CSV) file is a delimited text file that uses a comma to separate values. Each line of the file is a data record. Each record consists of one or more fields, separated by com...
5861fd13bda0-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
[Document(page_content='Team: Nationals\n"Payroll (millions)": 81.34\n"Wins": 98', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 0}, lookup_index=0), Document(page_content='Team: Reds\n"Payroll (millions)": 82.20\n"Wins": 97', lookup_str='', metadata={'source': './example_data/mlb_teams...
5861fd13bda0-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
(millions)": 81.43\n"Wins": 93', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 7}, lookup_index=0), Document(page_content='Team: Rays\n"Payroll (millions)": 64.17\n"Wins": 90', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 8}, lookup_index=0), Document(p...
5861fd13bda0-3
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
83', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 14}, lookup_index=0), Document(page_content='Team: Phillies\n"Payroll (millions)": 174.54\n"Wins": 81', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 15}, lookup_index=0), Document(page_content='Team: Di...
5861fd13bda0-4
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
'./example_data/mlb_teams_2012.csv', 'row': 21}, lookup_index=0), Document(page_content='Team: Royals\n"Payroll (millions)": 60.91\n"Wins": 72', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 22}, lookup_index=0), Document(page_content='Team: Marlins\n"Payroll (millions)": 118.07\n"Wins"...
5861fd13bda0-5
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
28}, lookup_index=0), Document(page_content='Team: Astros\n"Payroll (millions)": 60.65\n"Wins": 55', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 29}, lookup_index=0)]
5861fd13bda0-6
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
Customizing the csv parsing and loading# See the csv module documentation for more information of what csv args are supported. loader = CSVLoader(file_path='./example_data/mlb_teams_2012.csv', csv_args={ 'delimiter': ',', 'quotechar': '"', 'fieldnames': ['MLB Team', 'Payroll in millions', 'Wins'] }) data = ...
5861fd13bda0-7
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
[Document(page_content='MLB Team: Team\nPayroll in millions: "Payroll (millions)"\nWins: "Wins"', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 0}, lookup_index=0), Document(page_content='MLB Team: Nationals\nPayroll in millions: 81.34\nWins: 98', lookup_str='', metadata={'source': './e...
5861fd13bda0-8
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
120.51\nWins: 93', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 7}, lookup_index=0), Document(page_content='MLB Team: Orioles\nPayroll in millions: 81.43\nWins: 93', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 8}, lookup_index=0), Document(page_conten...
5861fd13bda0-9
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
'./example_data/mlb_teams_2012.csv', 'row': 14}, lookup_index=0), Document(page_content='MLB Team: Brewers\nPayroll in millions: 97.65\nWins: 83', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 15}, lookup_index=0), Document(page_content='MLB Team: Phillies\nPayroll in millions: 174.54\n...
5861fd13bda0-10
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
lookup_index=0), Document(page_content='MLB Team: Blue Jays\nPayroll in millions: 75.48\nWins: 73', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 22}, lookup_index=0), Document(page_content='MLB Team: Royals\nPayroll in millions: 60.91\nWins: 72', lookup_str='', metadata={'source': './e...
5861fd13bda0-11
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
88.19\nWins: 61', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 29}, lookup_index=0), Document(page_content='MLB Team: Astros\nPayroll in millions: 60.65\nWins: 55', lookup_str='', metadata={'source': './example_data/mlb_teams_2012.csv', 'row': 30}, lookup_index=0)]
5861fd13bda0-12
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
Specify a column to identify the document source# Use the source_column argument to specify a source for the document created from each row. Otherwise file_path will be used as the source for all documents created from the CSV file. This is useful when using documents loaded from CSV files for chains that answer questi...
5861fd13bda0-13
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
[Document(page_content='Team: Nationals\n"Payroll (millions)": 81.34\n"Wins": 98', lookup_str='', metadata={'source': 'Nationals', 'row': 0}, lookup_index=0), Document(page_content='Team: Reds\n"Payroll (millions)": 82.20\n"Wins": 97', lookup_str='', metadata={'source': 'Reds', 'row': 1}, lookup_index=0), Document(page...
5861fd13bda0-14
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
(millions)": 64.17\n"Wins": 90', lookup_str='', metadata={'source': 'Rays', 'row': 8}, lookup_index=0), Document(page_content='Team: Angels\n"Payroll (millions)": 154.49\n"Wins": 89', lookup_str='', metadata={'source': 'Angels', 'row': 9}, lookup_index=0), Document(page_content='Team: Tigers\n"Payroll (millions)": 132....
5861fd13bda0-15
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
81', lookup_str='', metadata={'source': 'Diamondbacks', 'row': 16}, lookup_index=0), Document(page_content='Team: Pirates\n"Payroll (millions)": 63.43\n"Wins": 79', lookup_str='', metadata={'source': 'Pirates', 'row': 17}, lookup_index=0), Document(page_content='Team: Padres\n"Payroll (millions)": 55.24\n"Wins": 76', l...
5861fd13bda0-16
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
Sox', 'row': 24}, lookup_index=0), Document(page_content='Team: Indians\n"Payroll (millions)": 78.43\n"Wins": 68', lookup_str='', metadata={'source': 'Indians', 'row': 25}, lookup_index=0), Document(page_content='Team: Twins\n"Payroll (millions)": 94.08\n"Wins": 66', lookup_str='', metadata={'source': 'Twins', 'row': 2...
5861fd13bda0-17
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html
previous Copy Paste next Email Contents Customizing the csv parsing and loading Specify a column to identify the document source By Harrison Chase © Copyright 2023, Harrison Chase. Last updated on Jun 04, 2023.
0afd220b7a14-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/microsoft_powerpoint.html
.ipynb .pdf Microsoft PowerPoint Contents Retain Elements Microsoft PowerPoint# Microsoft PowerPoint is a presentation program by Microsoft. This covers how to load Microsoft PowerPoint documents into a document format that we can use downstream. from langchain.document_loaders import UnstructuredPowerPointLoader loa...
a19e39346555-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/roam.html
.ipynb .pdf Roam Contents 🧑 Instructions for ingesting your own dataset Roam# ROAM is a note-taking tool for networked thought, designed to create a personal knowledge base. This notebook covers how to load documents from a Roam database. This takes a lot of inspiration from the example repo here. 🧑 Instructions fo...
f9c9ca45f85c-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/azlyrics.html
.ipynb .pdf AZLyrics AZLyrics# AZLyrics is a large, legal, every day growing collection of lyrics. This covers how to load AZLyrics webpages into a document format that we can use downstream. from langchain.document_loaders import AZLyricsLoader loader = AZLyricsLoader("https://www.azlyrics.com/lyrics/mileycyrus/flower...
f9c9ca45f85c-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/azlyrics.html
[Document(page_content="Miley Cyrus - Flowers Lyrics | AZLyrics.com\n\r\nWe were good, we were gold\nKinda dream that can't be sold\nWe were right till we weren't\nBuilt a home and watched it burn\n\nI didn't wanna leave you\nI didn't wanna lie\nStarted to cry but then remembered I\n\nI can buy myself flowers\nWrite my...
f9c9ca45f85c-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/azlyrics.html
better\nI can love me better, baby\nCan love me better\nI can love me better, baby (Than you can)\nCan love me better\nI can love me better, baby\nCan love me better\nI\n", lookup_str='', metadata={'source': 'https://www.azlyrics.com/lyrics/mileycyrus/flowers.html'}, lookup_index=0)]
f9c9ca45f85c-3
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/azlyrics.html
previous Arxiv next BiliBili By Harrison Chase © Copyright 2023, Harrison Chase. Last updated on Jun 04, 2023.
63e878eb664f-0
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/ifixit.html
.ipynb .pdf iFixit Contents Searching iFixit using /suggest iFixit# iFixit is the largest, open repair community on the web. The site contains nearly 100k repair manuals, 200k Questions & Answers on 42k devices, and all the data is licensed under CC-BY-NC-SA 3.0. This loader will allow you to download the text of a r...
63e878eb664f-1
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/ifixit.html
[Document(page_content="# Banana Teardown\nIn this teardown, we open a banana to see what's inside. Yellow and delicious, but most importantly, yellow.\n\n\n###Tools Required:\n\n - Fingers\n\n - Teeth\n\n - Thumbs\n\n\n###Parts Required:\n\n - None\n\n\n## Step 1\nTake one banana from the bunch.\nDon't squeeze too ha...
63e878eb664f-2
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/ifixit.html
[Document(page_content='# My iPhone 6 is typing and opening apps by itself\nmy iphone 6 is typing and opening apps by itself. How do i fix this. I just bought it last week.\nI restored as manufactures cleaned up the screen\nthe problem continues\n\n## 27 Answers\n\nFilter by: \n\nMost Helpful\nNewest\nOldest\n\n### Acc...
63e878eb664f-3
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/ifixit.html
logo). release the buttons when you see this.\nThen, connect to your laptop and log in to iTunes and reset your phone completely. (please take a back-up first).\nAnd your phone should be good to use again.\nWhat really happened here for me is that the sensors might have stuck to the screen and with mild twisting, they ...
63e878eb664f-4
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/ifixit.html
software.\n\n\n\n### Other Answer\nHey.\nJust had this problem now. As it turns out, you just need to plug in your phone. I use a case and when I took it off I noticed that there was a lot of dust and dirt around the areas that the case didn\'t cover. I shined a light in my ports and noticed they were filled with dust....
63e878eb664f-5
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/ifixit.html
refers to?). An Apple Genius recommended upgrading to iOS 11.3.1 from 11.2.2, to see if that fixed the trouble. If it didn\'t, Apple will sell me a new phone for $168! Of couese the OS upgrade didn\'t fix the problem. Thanks for helping me figure out that it\'s most likely a hardware problem--which the "genius" pro...
63e878eb664f-6
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/ifixit.html
happens\n\n\n\n### Other Answer\nI tried all of the above. I then turned off my home cleaned it with isopropyl alcohol 90%. Then I baked it in my oven on warm for an hour and a half over foil. Took it out and set it cool completely on the glass top stove. Then I turned on and it worked.\n\n\n\n### Other Answer\nI think...
63e878eb664f-7
https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/ifixit.html
was the extra cheap block plug I bought at a dollar store for convenience of an extra charging station when I move around the house from den to living room…..cord was fine but bought a new Apple brand block plug…no more problems works just fine now. This issue was a recent event so had to narrow things down to what had...