Spaces:
Runtime error
Runtime error
File size: 289 Bytes
2edf2fb 778e9cd 2edf2fb b121930 8bb1c53 0e54e32 a4a9966 a067b61 ca66c69 5aa9680 2edf2fb 57a1cc7 2edf2fb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
# Start Qdrant in the background
echo "Starting Qdrant server..."
/qdrant/qdrant &
whoami
pwd
ls -la
ls -la ../
whereis uv
# Run my chainlit app using uv
echo "Path is $PATH"
echo "Starting Chainlit application..."
uv run chainlit run app.py --host 0.0.0.0 --port 7860
|