We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4f1fb7 commit df7fc07Copy full SHA for df7fc07
1 file changed
.github/workflows/run_tutorials.yml
@@ -99,11 +99,10 @@ jobs:
99
- name: Run the converted notebook
100
run: |
101
NOTEBOOK="./tutorials/${{ matrix.notebook }}.py"
102
- if [[ "${{ matrix.notebook }}" == "47_Human_in_the_Loop_Agent" ]]; then
103
- # We add a prompt to confirm any user inputs in the HiTL notebook
+ if [ "${{ matrix.notebook }}" = "47_Human_in_the_Loop_Agent" ]; then
104
yes y | python "$NOTEBOOK"
105
- elif [[ "${{ matrix.notebook }}" == "48_Conversational_RAG" ]]; then
106
- yes Q | python "$NOTEBOOK"
+ elif [ "${{ matrix.notebook }}" = "48_Conversational_RAG" ]; then
+ printf "Q\n" | python "$NOTEBOOK"
107
else
108
python "$NOTEBOOK"
109
fi
0 commit comments