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 5f199ef commit a1349e3Copy full SHA for a1349e3
.github/workflows/scripts/run_notebooks.sh
@@ -9,7 +9,8 @@ cd docs/examples
9
# Function to process a notebook
10
process_notebook() {
11
notebook="$1"
12
- if [ "$notebook" != "valid_chess_moves.ipynb" ] && [ "$notebook" != "translation_with_quality_check.ipynb" ]; then
+ invalid_notebooks=("valid_chess_moves.ipynb" "translation_with_quality_check.ipynb" "llamaindex-output-parsing.ipynb")
13
+ if [[ ! " ${invalid_notebooks[@]} " =~ " ${notebook} " ]]; then
14
echo "Processing $notebook..."
15
poetry run jupyter nbconvert --to notebook --execute "$notebook"
16
if [ $? -ne 0 ]; then
0 commit comments