API Keys
API keys enable direct access to assistants and pre-configured chat models through the API, so you can integrate VARIOS AI into third-party applications such as chatbots, helpdesk systems, or web portals. Assistants and chat models configured in VARIOS AI can be wired into existing workflows behind a single OpenAI-compatible endpoint.Info: The VARIOS AI API is OpenAI compatible.
Note: Each API key requires its own license. Make sure
that sufficient licenses are available for the planned integrations.
Features at a glance
- List view: Displays all existing API keys with names. Each key can be edited or deleted.
- Search: Enables quick retrieval of individual keys.
- New API Key: Use the “New API Key” button to create an additional key.
Create API key
When creating or editing an API key, the following options are available:- Name
Freely chosen label to identify the API key, e.g., Shopware Integration. - Maximum costs per month ($)
- Limit the monthly costs for this key.
- Value
0means that no costs are allowed. - Value
-1means no limit.
Note Projection based on tokens and may differ from actual
billing costs.
-
DLP
Defines how Data Loss Prevention (DLP) is applied for all assistants and models on this API key:- Use assistant/model settings: DLP follows the setting of the respective assistant or model.
- Enforce DLP: DLP is active for all requests with this key, regardless of assistant, model, or request settings.
-
Assistants
Select which assistants can be used with this key. Only shared assistants can be accessed by the connected application. Assistant cards show the assistant’s DLP setting (including model combination), not the behaviour overridden by Enforce DLP on the key. You can also configure whether assistant responses are Chat Completions API compatible. -
Models & tools
Select which chat models can be used with this key. Only models that support the Chat Completions API are compatible with the API. Model cards show the model’s DLP setting, not the behaviour overridden by Enforce DLP on the key. The actual DLP behaviour for API requests follows from the key setting and the entity setting (see table below). In the Tools (model API) section, choose connectors and knowledge bases for direct model access via the API. In Tool options, you can block client-defined tools or expose all selected application tools to the model by default.
Typical use cases
- Web chatbots with access to internal knowledge bases
- Integration into CRM or ERP systems for automated processing of customer inquiries
- Customer support portals that provide assistants for FAQs or self-service
- Integration into automation tools for the intelligent control of automated workflows
- Integration into IDEs for AI-supported assistance during development
Calling the Chat Completions API
Use the OpenAI-compatible endpoint/api/v1/chat/completions. Replace the base URL with your VARIOS AI instance address (e.g. https://varios-ai.example.com).
Authentication: Pass the API key in the Authorization header as a Bearer token.
Model parameter: Set model to either an assistant ID or a chat model ID (a pre-configured model that supports Chat Completions). Only assistants and chat models assigned to the API key can be used.
- The chat model ID can be found in the URL of the respective model settings page. (e.g.
varios-ai.example.com/admin/models/**782d877e-b54f-4598-a32e-4a7d16e221e3**) - The assistant ID can be found in the URL of the respective assistant settings page. (e.g.
varios-ai.example.com/admin/assistants/**584ab525-7988-4e5d-8140-b03e4c9ee66c**)
stream:truefor streaming responses,falsefor a complete response in a single reply.dlp_active: Controls DLP only when the API key uses assistant/model settings and the assistant or model DLP is set to optional.trueenables DLP,falsedisables it. If omitted, DLP defaults to on for optional (same as in chat).
DLP behaviour for API requests
Tools: Unlike assistant-only flows, requests against a chat model may include a
tools array in the JSON body with your own function definitions and references to application tools. To attach an application tool, add a tool whose name is only the reserved name; VARIOS AI resolves it to the full schema. Name formats:
- Knowledge base:
kb_<knowledge-base-id> - MCP tool:
mcp_<mcp-tool-id> - OpenAPI endpoint:
openapi_<openapi-endpoint-id> - Code connector (e.g. FLUX connector):
pf_<connector-id>
parameters (JSON Schema). The ID can be taken from the URL of the respective tool, analogous to the chat model ID and assistant ID.
Example: assistant
Setmodel to the assistant ID. Tooling follows the assistant configuration; a tools array in the request is not used for assistant calls in the same way as for chat models.
Example: chat model
Setmodel to the chat model ID. You may send tools with application tool names and your own function definitions as described above.
Note Chat completions using chat models do not remove unused fields from the request. This means that any provider‑specific parameters, such as
response_format, safety_identifier, or similar, are forwarded exactly as provided. VARIOS AI acts solely as a middleware layer between the client and the model provider and only processes a limited set of predefined fields.Management
- Edit: Adjust name, cost limit, DLP setting, assigned assistants, chat models, and tools.
- Delete: Permanently removes the API key (access is immediately revoked).
