POST
/
genAI
/
v1
/
perform
curl --request POST \
  --url https://api.aceaicompany.com/genAI/v1/perform \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "prompt": "<string>"
}'
{
  "results": "<string>"
}

Purpose: Sends a custom prompt to perform a specific task using GenAI capabilities.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Evaluation parameters, specifically the prompt used to instruct the model or AI system.
prompt
string
required

Custom textual prompt or instructions for evaluating or analyzing the dataset.

Response

200
application/json
Evaluation successful, results returned.
results
string
required

The AI's response or evaluation result for the given prompt.