Spaces:
Runtime error
Runtime error
File size: 282 Bytes
57c7ce1 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
if [ ! -d "llama.cpp" ]; then
# only run in dev env
# TODO: revert once the PR is merged
# git clone https://github.com/ggerganov/llama.cpp --depth 1
git clone https://github.com/ngxson/llama.cpp -b xsn/lora_convert_base_is_optional --depth 1
fi
python app.py
|