Spaces:
Runtime error
Runtime error
File size: 289 Bytes
2edf2fb 6575453 2edf2fb 91305a0 e8c6562 2edf2fb |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# Start Qdrant in the background
echo "Starting Qdrant server..."
/qdrant/qdrant &
echo "Qdrant is ready!"
# Start Chainlit application using Uvicorn
echo "Starting Chainlit application..."
echo "Current path: $PATH"
# uv run chainlit run app.py --host 0.0.0.0 --port 7860
|