mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-20 22:52:29 +02:00
5 lines
154 B
Bash
Executable File
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 |