Files
langgraph/docs/_scripts/execute_notebooks.sh
T

5 lines
154 B
Bash
Executable File

for file in $(find docs/docs/how-tos -name "*.ipynb" | grep -v ".ipynb_checkpoints")
do
echo "Executing $file"
poetry run jupyter execute "$file"
done