mirror of
https://github.com/hwchase17/langchain.git
synced 2026-04-04 11:25:11 +00:00
Use docusaurus versioning with a callout, merged master as well @hwchase17 @baskaryan --------- Signed-off-by: Weichen Xu <weichen.xu@databricks.com> Signed-off-by: Rahul Tripathi <rauhl.psit.ec@gmail.com> Co-authored-by: Leonid Ganeline <leo.gan.57@gmail.com> Co-authored-by: Leonid Kuligin <lkuligin@yandex.ru> Co-authored-by: Averi Kitsch <akitsch@google.com> Co-authored-by: Erick Friis <erick@langchain.dev> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Nuno Campos <nuno@boringbits.io> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Martín Gotelli Ferenaz <martingotelliferenaz@gmail.com> Co-authored-by: Fayfox <admin@fayfox.com> Co-authored-by: Eugene Yurtsev <eugene@langchain.dev> Co-authored-by: Dawson Bauer <105886620+djbauer2@users.noreply.github.com> Co-authored-by: Ravindu Somawansa <ravindu.somawansa@gmail.com> Co-authored-by: Dhruv Chawla <43818888+Dominastorm@users.noreply.github.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: WeichenXu <weichen.xu@databricks.com> Co-authored-by: Benito Geordie <89472452+benitoThree@users.noreply.github.com> Co-authored-by: kartikTAI <129414343+kartikTAI@users.noreply.github.com> Co-authored-by: Kartik Sarangmath <kartik@thirdai.com> Co-authored-by: Sevin F. Varoglu <sfvaroglu@octoml.ai> Co-authored-by: MacanPN <martin.triska@gmail.com> Co-authored-by: Prashanth Rao <35005448+prrao87@users.noreply.github.com> Co-authored-by: Hyeongchan Kim <kozistr@gmail.com> Co-authored-by: sdan <git@sdan.io> Co-authored-by: Guangdong Liu <liugddx@gmail.com> Co-authored-by: Rahul Triptahi <rahul.psit.ec@gmail.com> Co-authored-by: Rahul Tripathi <rauhl.psit.ec@gmail.com> Co-authored-by: pjb157 <84070455+pjb157@users.noreply.github.com> Co-authored-by: Eun Hye Kim <ehkim1440@gmail.com> Co-authored-by: kaijietti <43436010+kaijietti@users.noreply.github.com> Co-authored-by: Pengcheng Liu <pcliu.fd@gmail.com> Co-authored-by: Tomer Cagan <tomer@tomercagan.com> Co-authored-by: Christophe Bornet <cbornet@hotmail.com>
111 lines
3.8 KiB
Plaintext
111 lines
3.8 KiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"attachments": {},
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"# Modern Treasury\n",
|
|
"\n",
|
|
">[Modern Treasury](https://www.moderntreasury.com/) simplifies complex payment operations. It is a unified platform to power products and processes that move money.\n",
|
|
">- Connect to banks and payment systems\n",
|
|
">- Track transactions and balances in real-time\n",
|
|
">- Automate payment operations for scale\n",
|
|
"\n",
|
|
"This notebook covers how to load data from the `Modern Treasury REST API` into a format that can be ingested into LangChain, along with example usage for vectorization."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 1,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"from langchain.indexes import VectorstoreIndexCreator\n",
|
|
"from langchain_community.document_loaders import ModernTreasuryLoader"
|
|
]
|
|
},
|
|
{
|
|
"attachments": {},
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"The Modern Treasury API requires an organization ID and API key, which can be found in the Modern Treasury dashboard within developer settings.\n",
|
|
"\n",
|
|
"This document loader also requires a `resource` option which defines what data you want to load.\n",
|
|
"\n",
|
|
"Following resources are available:\n",
|
|
"\n",
|
|
"`payment_orders` [Documentation](https://docs.moderntreasury.com/reference/payment-order-object)\n",
|
|
"\n",
|
|
"`expected_payments` [Documentation](https://docs.moderntreasury.com/reference/expected-payment-object)\n",
|
|
"\n",
|
|
"`returns` [Documentation](https://docs.moderntreasury.com/reference/return-object)\n",
|
|
"\n",
|
|
"`incoming_payment_details` [Documentation](https://docs.moderntreasury.com/reference/incoming-payment-detail-object)\n",
|
|
"\n",
|
|
"`counterparties` [Documentation](https://docs.moderntreasury.com/reference/counterparty-object)\n",
|
|
"\n",
|
|
"`internal_accounts` [Documentation](https://docs.moderntreasury.com/reference/internal-account-object)\n",
|
|
"\n",
|
|
"`external_accounts` [Documentation](https://docs.moderntreasury.com/reference/external-account-object)\n",
|
|
"\n",
|
|
"`transactions` [Documentation](https://docs.moderntreasury.com/reference/transaction-object)\n",
|
|
"\n",
|
|
"`ledgers` [Documentation](https://docs.moderntreasury.com/reference/ledger-object)\n",
|
|
"\n",
|
|
"`ledger_accounts` [Documentation](https://docs.moderntreasury.com/reference/ledger-account-object)\n",
|
|
"\n",
|
|
"`ledger_transactions` [Documentation](https://docs.moderntreasury.com/reference/ledger-transaction-object)\n",
|
|
"\n",
|
|
"`events` [Documentation](https://docs.moderntreasury.com/reference/events)\n",
|
|
"\n",
|
|
"`invoices` [Documentation](https://docs.moderntreasury.com/reference/invoices)\n"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"modern_treasury_loader = ModernTreasuryLoader(\"payment_orders\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"# Create a vectorstore retriever from the loader\n",
|
|
"# see https://python.langchain.com/en/latest/modules/data_connection/getting_started.html for more details\n",
|
|
"\n",
|
|
"index = VectorstoreIndexCreator().from_loaders([modern_treasury_loader])\n",
|
|
"modern_treasury_doc_retriever = index.vectorstore.as_retriever()"
|
|
]
|
|
}
|
|
],
|
|
"metadata": {
|
|
"kernelspec": {
|
|
"display_name": "Python 3 (ipykernel)",
|
|
"language": "python",
|
|
"name": "python3"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 3
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython3",
|
|
"version": "3.10.6"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 4
|
|
}
|