Sovereign Platform is in pre-launch alpha.
Not yet available to purchase. Sign up for our mailing list for upcoming launch dates.
Sovereign Platform is in pre-launch alpha.
Not yet available to purchase. Sign up for our mailing list for upcoming launch dates.
Sovereign Workflows integrates AI capabilities directly into your automation pipeline. Add AI steps to your workflows to summarize text, classify data, extract structured information, generate content, and make decisions — all without leaving the visual editor.
License Required
AI-powered workflow features require a license with LLM capabilities enabled. Check your license details in the Licensing section to confirm availability.
AI steps use large language models (LLMs) to process and generate text. Common use cases include:
An AI step takes a prompt (your instructions) and the data from previous workflow steps, sends it to the AI model, and returns the result for downstream steps to use.
Sovereign supports multiple AI providers. You configure which providers are available in your deployment, and each AI step can specify which provider to use.
| Provider | Models |
|---|---|
| OpenAI | GPT-4o, GPT-4, GPT-3.5 Turbo, and other OpenAI models |
| Anthropic | Claude 3.5 Sonnet, Claude 3 Opus, Claude 3 Haiku, and other Claude models |
| Azure OpenAI | GPT models deployed through your Azure OpenAI instance |
| Google Gemini | Gemini Pro, Gemini Flash, and other Gemini models |
Bring Your Own Keys
Each provider requires an API key. You supply the keys in your deployment's environment configuration. See Configuration Reference for the specific environment variables.
Set the API key for your chosen provider in your environment:
OPENAI_API_KEY=sk-...
ANTHROPIC_API_KEY=sk-ant-...
AZURE_OPENAI_API_KEY=...
GEMINI_API_KEY=...
You can configure multiple providers simultaneously and choose per-step which one to use. The LLM configuration file controls model selection, parameters, and provider routing.
To add an AI step to your workflow:
{{ context.data.get_ticket.result.description }})The AI step returns the model's response as output, available to subsequent steps via expressions.
For many use cases, you need the AI to return structured data — not freeform text. You can instruct the model to return JSON with specific fields:
This lets downstream steps reliably access specific fields (e.g., {{ context.data.classify.result.category }}) rather than trying to parse freeform text.
Effective Prompts
Be specific in your prompts. Instead of "classify this ticket," write "Classify the following support ticket into exactly one of these categories: billing, technical, feature-request, other. Respond with only the category name." The more specific your instructions, the more reliable the output.
AI steps and Agent nodes serve different purposes:
AI-powered workflow features require an Enterprise tier license or above. This includes the LLM connector actions and the AI provider integrations. The API keys are yours — Sovereign connects to the providers using your credentials.