Back to Alpanzo

Bring Your Own Model (BYOM) Guide

This guide explains the base parameters Alpanzo generates and how to configure custom endpoints effectively.

Dynamic Variables

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.

1. Chat Models

By default, Alpanzo converts its internal chat history format into the standard OpenAI Messages schema.

Example Output Payload:

{
  "messages": [
    { "role": "system", "content": "You are a full-capability AI..." },
    { "role": "user", "content": "Hello!" }
  ]
}

2. Image & 3D Models

Image and 3D generators typically expect a single string prompt alongside generation parameters.

Example Output Payload:

{
  "prompt": "A futuristic city at sunset, synthwave style"
}

3. Web Search

Web search tools usually expect a standard query string parameter.