An array of variables with their modality (text or image) used in the prompt. Helpful in detecting and replacing variables in the prompt with end-user inputs, context, etc.
Copy
Ask AI
# Replace with your valuesAPI_KEY="your_workspace_api_key"PROMPT_ID="my_prompt_id"DEPLOYMENT_ID="my_deployment_id"BASE_URL="https://api.adaline.ai/v2/deployments"URL="${BASE_URL}?promptId=${PROMPT_ID}&deploymentId=${DEPLOYMENT_ID}"curl -X GET \ "${URL}" \ -H "Authorization: Bearer ${API_KEY}" \ -H "Content-Type: application/json"