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