├── .env.example ├── .gitignore ├── README.md ├── eco-tools ├── serve.py └── template │ ├── .gitignore │ ├── README.md │ ├── pyproject.toml │ ├── template │ ├── __init__.py │ └── chain.py │ └── tests │ └── __init__.py ├── fast-build ├── my_chainlit_example1.py ├── my_chainlit_example2.py ├── my_streamlit_example1.py └── my_streamlit_example2.py └── use-cases ├── doc-chatbot.ipynb ├── role-play.ipynb ├── summerization.ipynb └── web-search.ipynb /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | 3 | .history 4 | .vscode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/README.md -------------------------------------------------------------------------------- /eco-tools/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/eco-tools/serve.py -------------------------------------------------------------------------------- /eco-tools/template/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /eco-tools/template/README.md: -------------------------------------------------------------------------------- 1 | # 《LangChain 实战》模板 -------------------------------------------------------------------------------- /eco-tools/template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/eco-tools/template/pyproject.toml -------------------------------------------------------------------------------- /eco-tools/template/template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/eco-tools/template/template/__init__.py -------------------------------------------------------------------------------- /eco-tools/template/template/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/eco-tools/template/template/chain.py -------------------------------------------------------------------------------- /eco-tools/template/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fast-build/my_chainlit_example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/fast-build/my_chainlit_example1.py -------------------------------------------------------------------------------- /fast-build/my_chainlit_example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/fast-build/my_chainlit_example2.py -------------------------------------------------------------------------------- /fast-build/my_streamlit_example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/fast-build/my_streamlit_example1.py -------------------------------------------------------------------------------- /fast-build/my_streamlit_example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/fast-build/my_streamlit_example2.py -------------------------------------------------------------------------------- /use-cases/doc-chatbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/use-cases/doc-chatbot.ipynb -------------------------------------------------------------------------------- /use-cases/role-play.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/use-cases/role-play.ipynb -------------------------------------------------------------------------------- /use-cases/summerization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/use-cases/summerization.ipynb -------------------------------------------------------------------------------- /use-cases/web-search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webup/langchain-in-action/HEAD/use-cases/web-search.ipynb --------------------------------------------------------------------------------