Ich habe dieses Script
@echo off
:loop
echo:
set /p input="Ask something: "
if %input% == "exit" (
goto :exit
)
python llama.py falcon "%input%"
goto :loop
:exit
echo "Bye"
pause
aber es funktioniert nicht. Wenn ich "exit" eingebe wird trotzdem das Script aufgerufen.