docs(providers): add Minimax voice provider page#1029
Merged
dhruva-reddy merged 1 commit intomainfrom Apr 22, 2026
Merged
Conversation
Contributor
Author
This was referenced Apr 22, 2026
Contributor
|
🌿 Preview your docs: https://vapi-preview-5ac17c4e-8b2c-495e-b7cf-aa0547376b04.docs.buildwithfern.com |
Contributor
Author
4 tasks
adhamvapi
approved these changes
Apr 22, 2026
5470773 to
e91e0fc
Compare
9d0aac9 to
aecebff
Compare
Contributor
Author
Merge activity
|
dhruva-reddy
added a commit
that referenced
this pull request
Apr 22, 2026
## Description
- Adds a new `### Live captions and word-level timing` section to `fern/quickstart/web.mdx`, slotted between the Web SDK installation tabs and `### Voice widget implementation` so it's discoverable in the natural client-side flow.
- Originally targeted `fern/sdk/web.mdx`, but that page is redirected away (`/sdk/web → /quickstart/web` per `docs.yml` line 1058) and is effectively orphaned. Moved the content to the canonical destination so customers can actually find it.
- Shows how to opt in via `clientMessages` and consume the event in a `vapi.on("message", ...)` handler with concrete code that branches on `timing?.type`.
- Includes a `<Warning>` callout explaining the cadence/granularity differences between providers so customers don't pick the wrong one for their UI:
- ElevenLabs (`word-alignment`) — true per-word playback cadence
- Minimax (`word-progress`) — segment-sized jumps near segment end
- All others — text-only events tied to audio playback
- Notes that `force-say` always emits text-only and that barge-in stops emission for the interrupted turn.
- Cross-links to the new [Minimax provider page](/providers/voice/minimax) and the canonical [Server events → Assistant Speech Started](/server-url/events#assistant-speech-started) reference.
- Stacked on [PR #1028](https://app.graphite.com/github/pr/VapiAI/docs/1028) (adds the events anchor) and [PR #1029](https://app.graphite.com/github/pr/VapiAI/docs/1029) (adds the Minimax page) — the cross-references in this PR resolve once the stack is merged.
## Testing Steps
- [x] Verified `/sdk/web` redirects to `/quickstart/web` per `docs.yml` redirect rule, confirming the original target page was not user-reachable
- [x] Verified both cross-reference links target paths/anchors created in the downstack PRs
- [x] Verified the new `<Warning>` block uses the same component pattern as existing warnings on this page
- [x] Reviewer: spot-check the Fern preview build to confirm the new section renders correctly between "Installation and setup" and "Voice widget implementation"
Contributor
|
🌿 Preview your docs: https://vapi-preview-d9d1070e-15b6-459e-8a0f-c8d9a2b0cd72.docs.buildwithfern.com |
Contributor
|
🌿 Preview your docs: https://vapi-preview-56948850-dd7e-4005-b260-3be21258899f.docs.buildwithfern.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Description
fern/providers/voice/minimax.mdx— a new voice provider page for Minimax. Minimax was previously absent from the Voices section in the docs nav.fern/docs.ymlunder the existingVoices (Text-to-speech)section, alphabetically positioned after LMNT.provider,model,voiceId).subtitleTypevoice param ("sentence"default,"word"opt-in) and how it interacts with theassistant.speechStartedmessage.totalWords: 0sentinel,force-sayalways emits text-only, barge-in cuts emission, CJK languages are word-counted per ideograph/kana/hangul.#assistant-speech-startedanchor this page links to.Testing Steps
docs.ymlcorrectly (matches the structure of sibling voice provider pages like ElevenLabs and Cartesia)/server-url/events#assistant-speech-startedmatches the anchor added in the parent PR