curl --location --request POST 'https://api.hiveflow.ai/api/llm/process' \
--header 'Content-Type: application/json' \
--data-raw '{
"llm": "openai",
"model": "gpt-3.5-turbo",
"prompt": "Analiza el sentimiento del siguiente texto...",
"agentObjective": "Eres un experto en análisis de sentimientos",
"url": "string",
"temperature": 0.7,
"maxTokens": 1000
}'
{
"success": true,
"result": "string",
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0
},
"model": "string",
"provider": "string"
}