🐝 HYVE ALPHA Embed Demo

Paste these values to try your API key live. The widget below uses the exact embed snippet you'd drop into your admin panel.

Configure

Live Widget

Widget appears here after you click Load ALPHA.

Drop into your admin panel

<div id="alpha-chat"
     data-api-key="ak_hyve_YOUR_KEY"
     data-provider="openai"
     data-model="gpt-4o"
     data-llm-key="sk-YOUR_OPENAI_KEY"
     data-system-prompt="You are the Acme admin assistant">
</div>
<script src="https://hyvealpha.com/embed/alpha.js"></script>

Direct API — POST /api/alpha/v1/chat

curl -X POST https://hyvealpha.com/api/alpha/v1/chat \
  -H "Authorization: Bearer ak_hyve_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "messages": [{"role":"user","content":"Hello"}],
    "llm_provider": "openai",
    "llm_api_key": "sk-YOUR_OPENAI_KEY",
    "model": "gpt-4o"
  }'

Response: { content, provider, model, tokens_in, tokens_out, latency_ms }