Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 369 Bytes
7ba9119 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
set -e
# Start llamafiler
echo "Starting llamafiler..."
byota/bin/llamafiler -m all-MiniLM-L6-v2.F16.gguf -l 0.0.0.0:8080 -H "Access-Control-Allow-Origin: *" --trust 127.0.0.1/32 2> /tmp/llamafiler.logs &
# show llamafile start messages
sleep 1
head /tmp/llamafiler.logs
# Start marimo
cd byota/src && marimo run --headless --host 0.0.0.0 --port 7860 $@
|