Production readiness checklist for Speak language learning integrations: auth, audio pipeline, monitoring, and compliance.
speak-install-auth setup#!/bin/bash
set -euo pipefail
echo "Speak Production Readiness"
curl -sf -H "Authorization: Bearer $SPEAK_API_KEY" \
https://api.speak.com/v1/health | jq '.status'
echo " Auth: PASS"
ffmpeg -version > /dev/null 2>&1 && echo " ffmpeg: PASS" || echo " ffmpeg: FAIL"
echo "Checks complete."
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Verify SPEAK_API_KEY environment variable |
| 429 Rate Limited | Too many requests | Wait Retry-After seconds, use backoff |
| Audio format error | Wrong codec/sample rate | Convert to WAV 16kHz mono with ffmpeg |
| Session expired | Timeout after 30 min | Start a new conversation session |
See speak-prod-checklist for production readiness.
Basic: Apply prod checklist with default configuration for a standard Speak integration.
Advanced: Customize for production with error recovery, monitoring, and team-specific requirements.