File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,23 +34,23 @@ RUN cat > /app/startup.sh << 'EOF'
3434# !/bin/bash
3535set -e
3636
37- echo "🚀 Starting UiPath Retrieval Chain..."
37+ echo "Starting UiPath Retrieval Chain..."
3838
3939# Re-authenticate in case token expired
40- echo "🔐 Authenticating with UiPath..."
40+ echo "Authenticating with UiPath..."
4141uv run uipath auth --client-id="$CLIENT_ID" --client-secret="$CLIENT_SECRET" --base-url="$BASE_URL"
4242
4343# Check if arguments are provided
4444if [ $# -eq 0 ]; then
45- echo "📄 Running retrieval chain with default parameters..."
45+ echo "Running retrieval chain with default parameters..."
4646 exec uv run python main.py
4747else
48- echo "📄 Running retrieval chain with parameters: $@"
48+ echo " Running retrieval chain with parameters: $@"
4949 exec uv run python main.py "$@"
5050fi
5151EOF
5252
5353RUN chmod +x /app/startup.sh
5454
5555# Default command
56- CMD ["/app/startup.sh" ]
56+ CMD ["/app/startup.sh" ]
You can’t perform that action at this time.
0 commit comments