We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2175ad commit fc332ceCopy full SHA for fc332ce
1 file changed
agents/langflow/simple_tool_calling_agent/deploy-local.sh
@@ -85,15 +85,13 @@ echo "Starting local stack (Langflow + PostgreSQL + Langfuse)..."
85
podman-compose up -d
86
87
echo ""
88
-printf "Waiting for Langflow to start (this may take a minute)... "
89
-SPIN='|/-\'
90
-for i in $(seq 1 60); do
+echo "Waiting for Langflow to start (this may take a minute)..."
+for i in $(seq 1 24); do
91
if curl -s http://localhost:7860/health >/dev/null 2>&1; then
92
- printf "\r%s\n" "Waiting for Langflow to start (this may take a minute)... done"
+ echo "Langflow is ready!"
93
break
94
fi
95
- printf "\b${SPIN:i%4:1}"
96
- sleep 2
+ sleep 5
97
done
98
99
0 commit comments