chat-ui-example / entrypoint.sh
OlivierDehaene
Add chat ui + tgi + mongo dockerfile
985e74e
raw
history blame
387 Bytes
#!/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 $?