Procesar texto con un modelo LLM específico
🚀 Servidor de producción
https://api.hiveflow.com/api
🚀 Servidor de producción
https://api.hiveflow.com/api
POST
/llm/process
LLM
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.hiveflow.com/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
}'
Response Response Example
{
"success": true,
"result": "string",
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0
},
"model": "string",
"provider": "string"
}
Request
Body Params application/json
Responses
Modified at 2025-06-19 15:26:15