Onboarding
Once you have completed Connect Microsoft Entra and handed off the credentials, your Advania Solutions Architect drives the rest — Keycloak configuration, role mapping, and end-to-end verification.
Your involvement is roughly 15 minutes: sign in as a nominated Admin test user and a nominated Developer test user, then run a first chat completion to confirm end-to-end.
Verifying end-to-end
Once Advania signals that platform-side configuration is complete, one of your Developers runs a curl from the machine you plan to run workloads from (to verify your egress rules also work):
curl -sS -X POST https://api.alt.advania.ai/v1/chat/completions \
-H "Authorization: Bearer $ALT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "advania-chat-small",
"messages": [{"role": "user", "content": "Say hello in Swedish."}]
}'
A 200 OK with a non-empty choices[0].message.content and non-zero usage counts means onboarding is complete. If any of these fail, contact your Advania Solutions Architect with the x-request-id from the failing response.