mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-25 23:02:40 +08:00
11 lines
248 B
Bash
11 lines
248 B
Bash
curl -X POST \
|
|
"$LANGFLOW_URL/api/v1/build/$FLOW_ID/flow" \
|
|
-H "accept: application/json" \
|
|
-H "Content-Type: application/json" \
|
|
-H "x-api-key: $LANGFLOW_API_KEY" \
|
|
-d '{
|
|
"inputs": {
|
|
"input_value": "Tell me a story"
|
|
}
|
|
}'
|