v0.3.104
reacherhq/check-if-email-existsv0.3.104May 3, 2025by KoljaB
AI Summary
This release introduces a new threading parameter to allow callback functions to run in a separate thread, preventing the main application from blocking when handling slow operations.
Key Highlights
- New `start_callback_in_new_thread` parameter for callback management.
- Callbacks can now run asynchronously to avoid blocking the main thread.
- Useful for blocking callback functions.
New Features
- New parameter: `start_callback_in_new_thread`
Full Release Notes
# RealtimeSTT 0.3.104 ### Features & Improvements - New parameter: **start_callback_in_new_thread** If set to True, all callback functions will be executed in a new thread. This can be useful if the callback function is blocking and you want to avoid blocking the realtimestt application thread.