API request for pre-recorded runs endlessly #140
-
Hey all - deepgram ran fine earlier today in a python script I have. Now whenever I try and run |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @ks233ever , I just tested this to see if I would get a similar problem, but I didn't. I ran You said the script worked before, so I assume it's nothing wrong with your code. Could you please try again and then let me know if you still have a problem? You might also try running a CURL request just to test that it's the API or your API key that is the problem rather than the script. If it doesn't work with the CURL request then I would think it has to do with your API key. If that's the case, I can ask the team to look into it if you give me your projectID.
Let me know if it is still not working for you and I'll do what I can to help. Sandra |
Beta Was this translation helpful? Give feedback.
-
hey all - the issue was you have to include model and tier into the options you pass api so had to do |
Beta Was this translation helpful? Give feedback.
hey all - the issue was you have to include model and tier into the options you pass api
so
{'summarize':True, 'detect_entities':True, 'utterances':True}
won't workhad to do
{ "punctuate": True, "model": "general", "tier": "nova", "language": "en-US", 'summarize':True, 'utterances':True }