仓库结构
如果您计划为LangChain的代码或文档做贡献,了解仓库的高层结构会很有帮助。 LangChain的组织形式是一个单一代码库,其中包含多个包。
您可以查看我们的安装指南,了解它们是如何结合在一起的。 您可以查看我们的安装指南以了解它们如何结合在一起。
以下是以树形结构可视化的结构:
.
├── cookbook # Tutorials and examples
├── docs # Contains content for the documentation here: https://python.langchain.com/
├── libs
│ ├── langchain
│ │ ├── langchain
│ │ ├── tests/unit_tests # Unit tests (present in each package not shown for brevity)
│ │ ├── tests/integration_tests # Integration tests (present in each package not shown for brevity)
│ ├── community # Third-party integrations
│ │ ├── langchain-community
│ ├── core # Base interfaces for key abstractions
│ │ ├── langchain-core
│ ├── experimental # Experimental components and chains
│ │ ├── langchain-experimental
| ├── cli # Command line interface
│ │ ├── langchain-cli
│ ├── text-splitters
│ │ ├── langchain-text-splitters
│ ├── standard-tests
│ │ ├── langchain-standard-tests
│ ├── partners
│ ├── langchain-partner-1
│ ├── langchain-partner-2
│ ├── ...
│
├── templates # A collection of easily deployable reference architectures for a wide variety of tasks.
根目录还包含以下文件:
pyproject.toml
:构建文档和文档、使用手册的依赖项。Makefile
:包含构建、检查和文档及使用手册快捷方式的文件。
根目录级别还有其他文件,但它们的存在应该是不言自明的。欢迎随意浏览!
文档
/docs
目录包含显示的文档内容
在 https://python.langchain.com/ 和相关的API参考 https://python.langchain.com/api_reference/langchain/index.html。
请参阅文档指南以了解如何为文档做贡献。
代码
/libs
目录包含 LangChain 包的代码。
要了解更多关于如何贡献代码的信息,请参见以下指南: