curl --location --request POST 'https://api.hiveflow.ai/api/flows//nodes//process' \
--header 'Content-Type: application/json' \
--data-raw '{
"inputs": {
"previousNode": {
"result": "Resultado del nodo anterior"
},
"userInput": "Texto a procesar"
},
"async": false,
"saveToHistory": true,
"overrideConfig": {
"temperature": 0,
"maxTokens": 0,
"model": "string"
}
}'
{
"success": true,
"nodeId": "string",
"result": {
"output": "string",
"metadata": {},
"conditionalResults": [
{
"condition": "string",
"result": true,
"targetNodeId": "string"
}
],
"usage": {
"total_tokens": 0,
"cost": 0
}
},
"executionTime": 0,
"timestamp": "2019-08-24T14:15:22Z",
"processId": "string"
}