Spaces:
Runtime error
Runtime error
File size: 387 Bytes
985e74e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/bin/bash
# Start the local Mongo database
mongod &
# Start the text-generation-inference process
text-generation-launcher --model-id OpenAssistant/falcon-7b-sft-top1-696 --num-shard 1 --port 8080 &
# Start the chat-ui process
pm2 start /app/build/index.js -i $CPU_CORES --no-daemon &
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?
|