From 513f1d8037d61f41ba427af134a878358d502c54 Mon Sep 17 00:00:00 2001 From: Kagura Chen Date: Thu, 13 Jun 2024 00:30:04 +0800 Subject: [PATCH] docs: update repo_structure.mdx to reflect latest code changes (#22810) **Description:** This PR updates the documentation to reflect the recent code changes. --------- Co-authored-by: Chester Curme --- docs/docs/contributing/repo_structure.mdx | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/docs/contributing/repo_structure.mdx b/docs/docs/contributing/repo_structure.mdx index a8f3805fb5..87caa1fdee 100644 --- a/docs/docs/contributing/repo_structure.mdx +++ b/docs/docs/contributing/repo_structure.mdx @@ -15,12 +15,22 @@ Here's the structure visualized as a tree: ├── cookbook # Tutorials and examples ├── docs # Contains content for the documentation here: https://python.langchain.com/ ├── libs -│ ├── langchain # Main package +│ ├── 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) -│ ├── langchain-community # Third-party integrations -│ ├── langchain-core # Base interfaces for key abstractions -│ ├── langchain-experimental # Experimental components and chains +│ ├── 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