See full variable in transcript
Is it possible to the see the full variable in a transcript? Right now it just ends with …:
2 Replies
Unfortunately the Transcripts panel in the Creator only shows a preview of very large values – anything longer than ~100 chars is shortened with … so the whole payload can’t be expanded there today.
Work-arounds to read the complete value:
• Export the conversation – in the Conversations list ( … menu ➜ Export ) Voiceflow downloads a CSV that contains the entire JSON for every trace.
• Call the Transcripts API –
Docs: https://docs.voiceflow.com & https://developer.voiceflow.com/v2.0/reference/get_transcript_dialog
GET /v2/transcripts/{transcriptID}/dialogs
(or voiceflow transcript
in the CLI) returns the full trace array, including the complete metadata.diff.timeslots.after
value you posted.
Either method will let you open the file/JSON locally and inspect the full object.
Let us know if that helps!Docs: https://docs.voiceflow.com & https://developer.voiceflow.com/v2.0/reference/get_transcript_dialog
Thanks!