├── .github └── ISSUE_TEMPLATE │ ├── errata_report.md │ └── error_report.md ├── .gitignore ├── LICENSE ├── README.md ├── assets └── cover.jpg ├── chapter3 ├── notebook.ipynb └── requirements.txt ├── chapter4 ├── notebook.ipynb └── requirements.txt ├── chapter5 ├── notebook.ipynb └── requirements.txt ├── chapter6 ├── .env.example ├── .python-version ├── app.py └── requirements.txt ├── chapter7 ├── .env.example ├── .python-version ├── app.py ├── requirements.txt └── serverless.yml ├── chapter8 ├── .env.example ├── .python-version ├── add_document.py ├── app.py ├── recreate_index.py ├── requirements-dev.txt ├── requirements.txt └── serverless.yml ├── details ├── 06-02_setup-cloud9 │ └── .python-version ├── 06-03_hello-streamlit │ ├── .python-version │ └── app.py ├── 06-04_input │ ├── .python-version │ └── app.py ├── 06-05_respond │ ├── .python-version │ └── app.py ├── 06-06_show-messages │ ├── .python-version │ └── app.py ├── 06-07_langchain-chat-completions-api │ ├── .env.example │ ├── .python-version │ └── app.py ├── 06-08_agent │ ├── .env.example │ ├── .python-version │ └── app.py ├── 06-09_memory │ ├── .env.example │ ├── .python-version │ └── app.py ├── 06-10_deploy │ ├── .env.example │ ├── .python-version │ ├── app.py │ └── requirements.txt ├── 07-03_dotenv │ ├── .env.example │ └── .python-version ├── 07-06_create-app │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-08_respond │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-09_respond-in-thread │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-10_call-openai-api │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-11_streaming │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-12_history │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-13_lazy-handler │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-14_lambda-handler │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-15_avoid-rate-limit │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-16_block-kit │ ├── .env.example │ ├── .python-version │ └── app.py ├── 07-17_deploy │ ├── .env.example │ ├── .python-version │ ├── app.py │ ├── requirements.txt │ └── serverless.yml ├── 08-07_add-document │ ├── .env.example │ ├── .python-version │ ├── add_document.py │ ├── app.py │ ├── recreate_index.py │ ├── requirements-dev.txt │ ├── requirements.txt │ └── serverless.yml ├── 08-08_retrieval-qa │ ├── .env.example │ ├── .python-version │ ├── add_document.py │ ├── app.py │ ├── recreate_index.py │ ├── requirements-dev.txt │ ├── requirements.txt │ └── serverless.yml └── 08-10_conversational-retrieval-chain │ ├── .env.example │ ├── .python-version │ ├── add_document.py │ ├── app.py │ ├── recreate_index.py │ ├── requirements-dev.txt │ ├── requirements.txt │ └── serverless.yml ├── errata.md ├── pyproject.toml └── updates.md /.github/ISSUE_TEMPLATE/errata_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/.github/ISSUE_TEMPLATE/errata_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/error_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/.github/ISSUE_TEMPLATE/error_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/README.md -------------------------------------------------------------------------------- /assets/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/assets/cover.jpg -------------------------------------------------------------------------------- /chapter3/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter3/notebook.ipynb -------------------------------------------------------------------------------- /chapter3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter3/requirements.txt -------------------------------------------------------------------------------- /chapter4/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter4/notebook.ipynb -------------------------------------------------------------------------------- /chapter4/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter4/requirements.txt -------------------------------------------------------------------------------- /chapter5/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter5/notebook.ipynb -------------------------------------------------------------------------------- /chapter5/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter5/requirements.txt -------------------------------------------------------------------------------- /chapter6/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter6/.env.example -------------------------------------------------------------------------------- /chapter6/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /chapter6/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter6/app.py -------------------------------------------------------------------------------- /chapter6/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter6/requirements.txt -------------------------------------------------------------------------------- /chapter7/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter7/.env.example -------------------------------------------------------------------------------- /chapter7/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /chapter7/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter7/app.py -------------------------------------------------------------------------------- /chapter7/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter7/requirements.txt -------------------------------------------------------------------------------- /chapter7/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter7/serverless.yml -------------------------------------------------------------------------------- /chapter8/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter8/.env.example -------------------------------------------------------------------------------- /chapter8/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /chapter8/add_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter8/add_document.py -------------------------------------------------------------------------------- /chapter8/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter8/app.py -------------------------------------------------------------------------------- /chapter8/recreate_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter8/recreate_index.py -------------------------------------------------------------------------------- /chapter8/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter8/requirements-dev.txt -------------------------------------------------------------------------------- /chapter8/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter8/requirements.txt -------------------------------------------------------------------------------- /chapter8/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/chapter8/serverless.yml -------------------------------------------------------------------------------- /details/06-02_setup-cloud9/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/06-03_hello-streamlit/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/06-03_hello-streamlit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-03_hello-streamlit/app.py -------------------------------------------------------------------------------- /details/06-04_input/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/06-04_input/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-04_input/app.py -------------------------------------------------------------------------------- /details/06-05_respond/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/06-05_respond/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-05_respond/app.py -------------------------------------------------------------------------------- /details/06-06_show-messages/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/06-06_show-messages/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-06_show-messages/app.py -------------------------------------------------------------------------------- /details/06-07_langchain-chat-completions-api/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-07_langchain-chat-completions-api/.env.example -------------------------------------------------------------------------------- /details/06-07_langchain-chat-completions-api/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/06-07_langchain-chat-completions-api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-07_langchain-chat-completions-api/app.py -------------------------------------------------------------------------------- /details/06-08_agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-08_agent/.env.example -------------------------------------------------------------------------------- /details/06-08_agent/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/06-08_agent/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-08_agent/app.py -------------------------------------------------------------------------------- /details/06-09_memory/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-09_memory/.env.example -------------------------------------------------------------------------------- /details/06-09_memory/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/06-09_memory/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-09_memory/app.py -------------------------------------------------------------------------------- /details/06-10_deploy/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-10_deploy/.env.example -------------------------------------------------------------------------------- /details/06-10_deploy/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/06-10_deploy/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-10_deploy/app.py -------------------------------------------------------------------------------- /details/06-10_deploy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/06-10_deploy/requirements.txt -------------------------------------------------------------------------------- /details/07-03_dotenv/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-03_dotenv/.env.example -------------------------------------------------------------------------------- /details/07-03_dotenv/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-06_create-app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-06_create-app/.env.example -------------------------------------------------------------------------------- /details/07-06_create-app/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-06_create-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-06_create-app/app.py -------------------------------------------------------------------------------- /details/07-08_respond/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-08_respond/.env.example -------------------------------------------------------------------------------- /details/07-08_respond/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-08_respond/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-08_respond/app.py -------------------------------------------------------------------------------- /details/07-09_respond-in-thread/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-09_respond-in-thread/.env.example -------------------------------------------------------------------------------- /details/07-09_respond-in-thread/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-09_respond-in-thread/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-09_respond-in-thread/app.py -------------------------------------------------------------------------------- /details/07-10_call-openai-api/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-10_call-openai-api/.env.example -------------------------------------------------------------------------------- /details/07-10_call-openai-api/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-10_call-openai-api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-10_call-openai-api/app.py -------------------------------------------------------------------------------- /details/07-11_streaming/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-11_streaming/.env.example -------------------------------------------------------------------------------- /details/07-11_streaming/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-11_streaming/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-11_streaming/app.py -------------------------------------------------------------------------------- /details/07-12_history/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-12_history/.env.example -------------------------------------------------------------------------------- /details/07-12_history/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-12_history/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-12_history/app.py -------------------------------------------------------------------------------- /details/07-13_lazy-handler/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-13_lazy-handler/.env.example -------------------------------------------------------------------------------- /details/07-13_lazy-handler/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-13_lazy-handler/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-13_lazy-handler/app.py -------------------------------------------------------------------------------- /details/07-14_lambda-handler/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-14_lambda-handler/.env.example -------------------------------------------------------------------------------- /details/07-14_lambda-handler/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-14_lambda-handler/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-14_lambda-handler/app.py -------------------------------------------------------------------------------- /details/07-15_avoid-rate-limit/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-15_avoid-rate-limit/.env.example -------------------------------------------------------------------------------- /details/07-15_avoid-rate-limit/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-15_avoid-rate-limit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-15_avoid-rate-limit/app.py -------------------------------------------------------------------------------- /details/07-16_block-kit/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-16_block-kit/.env.example -------------------------------------------------------------------------------- /details/07-16_block-kit/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-16_block-kit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-16_block-kit/app.py -------------------------------------------------------------------------------- /details/07-17_deploy/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-17_deploy/.env.example -------------------------------------------------------------------------------- /details/07-17_deploy/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/07-17_deploy/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-17_deploy/app.py -------------------------------------------------------------------------------- /details/07-17_deploy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-17_deploy/requirements.txt -------------------------------------------------------------------------------- /details/07-17_deploy/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/07-17_deploy/serverless.yml -------------------------------------------------------------------------------- /details/08-07_add-document/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-07_add-document/.env.example -------------------------------------------------------------------------------- /details/08-07_add-document/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/08-07_add-document/add_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-07_add-document/add_document.py -------------------------------------------------------------------------------- /details/08-07_add-document/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-07_add-document/app.py -------------------------------------------------------------------------------- /details/08-07_add-document/recreate_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-07_add-document/recreate_index.py -------------------------------------------------------------------------------- /details/08-07_add-document/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-07_add-document/requirements-dev.txt -------------------------------------------------------------------------------- /details/08-07_add-document/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-07_add-document/requirements.txt -------------------------------------------------------------------------------- /details/08-07_add-document/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-07_add-document/serverless.yml -------------------------------------------------------------------------------- /details/08-08_retrieval-qa/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-08_retrieval-qa/.env.example -------------------------------------------------------------------------------- /details/08-08_retrieval-qa/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/08-08_retrieval-qa/add_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-08_retrieval-qa/add_document.py -------------------------------------------------------------------------------- /details/08-08_retrieval-qa/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-08_retrieval-qa/app.py -------------------------------------------------------------------------------- /details/08-08_retrieval-qa/recreate_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-08_retrieval-qa/recreate_index.py -------------------------------------------------------------------------------- /details/08-08_retrieval-qa/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-08_retrieval-qa/requirements-dev.txt -------------------------------------------------------------------------------- /details/08-08_retrieval-qa/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-08_retrieval-qa/requirements.txt -------------------------------------------------------------------------------- /details/08-08_retrieval-qa/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-08_retrieval-qa/serverless.yml -------------------------------------------------------------------------------- /details/08-10_conversational-retrieval-chain/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-10_conversational-retrieval-chain/.env.example -------------------------------------------------------------------------------- /details/08-10_conversational-retrieval-chain/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /details/08-10_conversational-retrieval-chain/add_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-10_conversational-retrieval-chain/add_document.py -------------------------------------------------------------------------------- /details/08-10_conversational-retrieval-chain/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-10_conversational-retrieval-chain/app.py -------------------------------------------------------------------------------- /details/08-10_conversational-retrieval-chain/recreate_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-10_conversational-retrieval-chain/recreate_index.py -------------------------------------------------------------------------------- /details/08-10_conversational-retrieval-chain/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-10_conversational-retrieval-chain/requirements-dev.txt -------------------------------------------------------------------------------- /details/08-10_conversational-retrieval-chain/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-10_conversational-retrieval-chain/requirements.txt -------------------------------------------------------------------------------- /details/08-10_conversational-retrieval-chain/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/details/08-10_conversational-retrieval-chain/serverless.yml -------------------------------------------------------------------------------- /errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/errata.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/pyproject.toml -------------------------------------------------------------------------------- /updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshidashingo/langchain-book/HEAD/updates.md --------------------------------------------------------------------------------