Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,6 @@ oss:
- src/oss/**
- src/oss/**/*

# Label for Labs documentation changes
labs:
- changed-files:
- any-glob-to-any-file:
- src/labs/**
- src/labs/**/*

# Label for Python-specific documentation
python:
- changed-files:
Expand Down
11 changes: 4 additions & 7 deletions pipeline/core/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ def build_all(self) -> None:
logger.info("Building LangGraph JavaScript version...")
self._build_langgraph_version("oss/javascript", "js")

logger.info("Building LangChain Labs content...")
self._build_unversioned_content("labs", "labs")

logger.info("Building LangSmith content...")
self._build_unversioned_content("langsmith", "langsmith")

Expand Down Expand Up @@ -305,7 +302,7 @@ def build_file(self, file_path: Path) -> None:
if relative_path.parts[0] == "oss":
self._build_oss_file(file_path, relative_path)
# Check if this is unversioned content
elif relative_path.parts[0] in {"labs", "langsmith"}:
elif relative_path.parts[0] == "langsmith":
self._build_unversioned_file(file_path, relative_path)
# Handle shared files (images, docs.json, etc.)
elif self.is_shared_file(file_path):
Expand Down Expand Up @@ -340,7 +337,7 @@ def _build_oss_file(self, file_path: Path, relative_path: Path) -> None:
logger.info("Built JavaScript version: oss/javascript/%s", oss_relative)

def _build_unversioned_file(self, file_path: Path, relative_path: Path) -> None:
"""Build an unversioned file (langsmith, labs).
"""Build an unversioned file (langsmith).

Args:
file_path: Path to the source file.
Expand Down Expand Up @@ -581,10 +578,10 @@ def _build_langgraph_version(self, output_dir: str, target_language: str) -> Non
)

def _build_unversioned_content(self, source_dir: str, output_dir: str) -> None:
"""Build unversioned content (labs/, langsmith/).
"""Build unversioned content (langsmith/).

Args:
source_dir: Source directory name (e.g., "labs").
source_dir: Source directory name (e.g., "langsmith").
output_dir: Output directory name (same as source_dir).
"""
src_path = self.src_dir / source_dir
Expand Down
92 changes: 0 additions & 92 deletions src/labs/deep-agents/built-in-components.mdx

This file was deleted.

122 changes: 0 additions & 122 deletions src/labs/deep-agents/configuration-options.mdx

This file was deleted.

44 changes: 0 additions & 44 deletions src/labs/deep-agents/overview.mdx

This file was deleted.

68 changes: 0 additions & 68 deletions src/labs/deep-agents/quickstart.mdx

This file was deleted.

Loading