This guide explains the base parameters Alpanzo generates and how to configure custom endpoints effectively.
You can use dynamic variables inside your Custom Body Parameters or Headers. They will be automatically replaced at runtime before the API request is sent.
{{prompt}} - Replaced with the user's exact current query or prompt string.By default, Alpanzo converts its internal chat history format into the standard OpenAI Messages schema.
messages.role: "system".role: "user".Example Output Payload:
{
"messages": [
{ "role": "system", "content": "You are a full-capability AI..." },
{ "role": "user", "content": "Hello!" }
]
}
Image and 3D generators typically expect a single string prompt alongside generation parameters.
prompt.Example Output Payload:
{
"prompt": "A futuristic city at sunset, synthwave style"
}
Web search tools usually expect a standard query string parameter.
q.