Overview
Deployment types represent deployed prompts with their complete configuration, messages, tools, and variables.Deployment
A specific instance of a prompt that has been deployed to an environment.id- Deployment identifiercreatedAt- Creation timestampupdatedAt- Last update timestampcreatedByUserId- Creator user IDupdatedByUserId- Last updater user IDprojectId- Associated project IDpromptId- Associated prompt IDdeploymentEnvironmentId- Target environment IDprompt- Complete deployed prompt object
- TypeScript
- Python
DeploymentPrompt
Prompt configuration with messages, tools, config, and variables.config- Model provider and settingsmessages- Array of chat messagestools- Array of available tools/functionsvariables- Array of variable definitions
DeploymentPromptConfig
Model provider and settings configuration.providerName- Provider name (e.g., ‘openai’, ‘anthropic’, ‘google’)providerId- Adaline internal provider UUIDmodel- Model identifier (e.g., ‘gpt-4o’, ‘claude-3-opus’)settings- Provider-specific runtime configuration
DeploymentPromptVariables
Prompt variable definitions.name- Variable name (used as{{variable_name}}in prompts)modality- Variable type (text, image, or pdf)
Complete Example
- TypeScript
- Python