Getting started
Run a DLaaS-backed companion in 5 minutes.
DLaaS Portal is your control plane for the Volvence DLaaS HTTP API. After
sign-up, the Portal automatically provisions a DLaaS tenant for your
organization and stores its credentials encrypted on the server side. You never
need to copy X-Tenant-Api-Key / X-Tenant-Api-Secret into a browser.
1. Sign up
Create an account and an organization. The first member becomes the owner.
2. Open the API Bench
Go to API Bench in the top navigation. The interactive reference is wired
to the Portal's BFF proxy at /api/proxy/dlaas/... — every request is signed
on the server with your organization's tenant credentials.
3. Send the first interaction
curl -X POST "$PORTAL_PUBLIC_URL/api/proxy/dlaas/v1/instances/ai_default/interactions" \
-H "content-type: application/json" \
-H "cookie: $PORTAL_SESSION" \
-d '{
"interaction_type": "natural_message",
"session_id": "sess_001",
"human_brief": "Say hi"
}'
You should receive a typed response from the kernel. Look at Usage to see the interaction recorded and at Security → Audit log to see the BFF proxy event.