mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
* Concepts page for the functional API * How-to guides that show functional API implementations * API reference for entrypoint, task, entrypoint.final * Add functional API version to the workflows --------- Co-authored-by: Vadym Barda <vadym@langchain.dev> Co-authored-by: ccurme <chester.curme@gmail.com>
14 lines
341 B
Bash
Executable File
14 lines
341 B
Bash
Executable File
ERROR_FOUND=0
|
|
for file in $(find $1 -name "*.ipynb" | grep -v ".ipynb_checkpoints"); do
|
|
OUTPUT=$(cat "$file" | jupytext --from ipynb --to py:percent | codespell -)
|
|
if [ -n "$OUTPUT" ]; then
|
|
echo "Errors found in $file"
|
|
echo "$OUTPUT"
|
|
ERROR_FOUND=1
|
|
fi
|
|
done
|
|
|
|
if [ "$ERROR_FOUND" -ne 0 ]; then
|
|
exit 1
|
|
fi
|