Additional metadata on requesting callback for large audio files #62
-
Hi, I'm using the Python SDK and transcribing very large type files (typically a few hundred MBs). So far I have successfully:
What I want to know:
Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
BrianHillis-DG
Dec 13, 2022
Replies: 1 comment
-
Hey @pranjal-zipteams, it sounds like the tag feature is what you're looking for. Python SDK Usage:#single tag
response = await dg_client.transcription.prerecorded(source,
{ "model": "general",
"language": "en",
"tier": "enhanced",
"tag" : "foo",
"callback" : CALLBACK_URL
})
#multiple tags
response = await dg_client.transcription.prerecorded(source,
{ "model": "general",
"language": "en",
"tier": "enhanced",
"tag" : ["foo", "bar"],
"callback" : CALLBACK_URL
}) These tags appear on the callback in the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
michaeljolley
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @pranjal-zipteams, it sounds like the tag feature is what you're looking for.
Python SDK Usage:
These tags appear on the callback in the
metadata.tags
field