2024-02-24 12:28:55 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
|
|
if [ $# -lt 1 ]
|
|
|
|
|
then
|
|
|
|
|
# Start @llama.cpp scenario
|
2024-03-02 22:00:14 +01:00
|
|
|
behave --summary --stop --no-capture --exclude 'issues|wrong_usages|passkey' --tags llama.cpp
|
2024-02-24 12:28:55 +01:00
|
|
|
else
|
|
|
|
|
behave "$@"
|
|
|
|
|
fi
|
|
|
|
|
|