Flux Word-Level Timestamps
🆕 Word-Level Timestamps Now Available in Flux
Flux now includes word-level timestamps in its responses. Each word in the words array carries start and end times (type double) alongside the existing word and confidence values.
Example response:
This is an additive change. No existing fields are removed or altered.
SDK Compatibility
Most integrations will continue to work without changes. The exception is clients configured to reject unrecognized fields, which may return errors when the new fields appear. Here is what we recommend:
- Python: Versions 6.0.1 and later are unaffected. If you are on the 5.x line, update to 5.3.4. Earlier 5.x versions do not handle the new fields reliably and should be updated.
- JavaScript / TypeScript: Not expected to be affected, as the SDK does not reject unrecognized fields. We recommend staying current on the v5.x line.
- Java: The latest release accepts the additional fields and requires no action. We recommend confirming you are on the current version.
- Custom integrations: If you parse Flux responses directly, ensure your code ignores fields it does not recognize. This protects you for this change and for future additive updates.
If you are already on a supported version, no action is needed.
Learn More
See the Flux API Reference for the full response schema, and the Flux Quickstart for getting started.