Clean config screenshot generator for the Azelux Minecraft Bedrock client.
Uses Groq AI (free, extremely fast) with automatic model fallback.
- Go to console.groq.com
- Sign up (free) → API Keys → Create API Key
- Copy the key (starts with
gsk_...)
- Open your Vercel project dashboard
- Go to Settings → Environment Variables
- Add:
- Name:
GROQ_API_KEY - Value:
gsk_your_key_here - Environments: ✅ Production ✅ Preview ✅ Development
- Name:
- Click Save then Redeploy
That's it. The key stays server-side — it's never sent to the browser.
- Go to vercel.com/new
- Drag the project folder onto the page
- Set the
GROQ_API_KEYenv var before deploying - Click Deploy
npm i -g vercel
cd your-project-folder
vercel
# Then add the env var in the Vercel dashboard and redeploy- Push to a GitHub repo
- vercel.com/new → Import Git Repository
- Add
GROQ_API_KEYin the Environment Variables section during setup
/
├── index.html ← entire frontend (static, no build step)
├── api/
│ └── extract.js ← serverless function (Groq API + fallback logic)
├── vercel.json ← deployment config
└── README.md
| Priority | Model | Speed | Notes |
|---|---|---|---|
| 1st | Llama 4 Scout 17B | ~1–2s | Multimodal, fastest on Groq |
| 2nd (fallback) | Llama 3.2 11B Vision | ~2–4s | Kicks in if Scout is slow/overloaded |
The fallback is automatic — if the primary model doesn't respond within ~5.5 seconds, the server switches to the backup. The UI shows a live status message so you know what's happening.
npm i -g vercel
vercel dev # runs both the static site and the /api/extract function locallySet the env var for local dev:
vercel env pull .env.local # pulls env vars from Vercel to local
# or just create .env.local manually:
# GROQ_API_KEY=gsk_your_key_here