Reduces noise in the transcript and conversation console logs
The problem this solves
The current logging system pollutes the console by printing entire event objects making it hard to follow the conversation (see before and after images).
Before
After
Quick Fix:
Maintains a buffer that stores the conversation and the latest transcription and logs it to console every 100 milliseconds.
Concerns:
Since raw events are no longer logged to the console, it might make it harder to debug. Although it wouldn't be too hard to add a debug flag in the future.
PS: Awesome work Yacine and team! Love this project and will keep pushing PRs :)
Reduces noise in the transcript and conversation console logs
The problem this solves
The current logging system pollutes the console by printing entire event objects making it hard to follow the conversation (see before and after images).
Quick Fix:
Maintains a buffer that stores the conversation and the latest transcription and logs it to console every 100 milliseconds.
Concerns:
Since raw events are no longer logged to the console, it might make it harder to debug. Although it wouldn't be too hard to add a debug flag in the future.
PS: Awesome work Yacine and team! Love this project and will keep pushing PRs :)