Zum Hauptinhalt springen
POST
/
profile
/
generatePortraitPrompt
Build a polished portrait prompt from four selections
curl --request POST \
  --url https://demo.enneo.ai/api/mind/profile/generatePortraitPrompt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "person": "pixie",
  "style": "Watercolor",
  "mood": "cheerful",
  "setting": "enchanted forest"
}
'
{
  "prompt": "A cheerful watercolor portrait of a pixie at the edge of a glowing enchanted forest..."
}

Documentation Index

Fetch the complete documentation index at: https://docs.enneo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Autorisierungen

Authorization
string
header
erforderlich

JWT-based authentication

Body

application/json
person
string

Type of person/character

Beispiel:

"pixie"

style
string

Visual / artistic style

Beispiel:

"Watercolor"

mood
string

Emotional mood / atmosphere

Beispiel:

"cheerful"

setting
string

Setting or background

Beispiel:

"enchanted forest"

Antwort

Successful operation

prompt
string

LLM-refined image-generation prompt

Beispiel:

"A cheerful watercolor portrait of a pixie at the edge of a glowing enchanted forest..."