mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-01 07:30:17 +01:00
13 lines
184 B
Bash
13 lines
184 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
if [ $# -lt 1 ]
|
||
|
then
|
||
|
# Start @llama.cpp scenario
|
||
|
behave --summary --stop --no-capture --exclude 'issues|wrong_usages' --tags llama.cpp
|
||
|
else
|
||
|
behave "$@"
|
||
|
fi
|
||
|
|