We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b0008 commit b93d565Copy full SHA for b93d565
subdirectories/scripts/build_cookbook.py
@@ -415,5 +415,7 @@ def replace_md_ipynb_links(match):
415
if __name__ == "__main__":
416
cookbook_directory = Path(__file__).parents[1] / "langsmith-cookbook"
417
convert_notebooks_to_markdown(cookbook_directory)
418
- docs_directory = Path(__file__).parents[2] / "docs"
+ # NOTE: the cookbooks directory is only used in version 1.0 of docs and should thus
419
+ # only build into this directory
420
+ docs_directory = Path(__file__).parents[2] / "versioned_docs" / "version-1.0"
421
move_to_docs(cookbook_directory, docs_directory)
0 commit comments