Hello community! so… I’m a newbie at this and do not have a full knowledge of how things really work when im making requests from my scripts to the API.
At the moment, I am trying to create a sentiment analyser which takes into consideration specific things i am specifying in a prompt. It seems to work pretty well but when i want to escalate the analysis to say… 100 excel cells with pretty short texts (they’re reviews) I keep getting a “timeout” warning or error. Even with 10 texts it is still pretty slow… would any of you be so kind to explain to me why is this happening? handling 100 texts shouldn’t be that big of a problem, right?
I am using the following parameters in a java script:
const temperature = 0;
const maxTokens = 2050;
and the model is gpt 3.5 turbo
edit note:
i am using the extension “app script” to write a java code in Google Sheets, which allows you to do this kind of integrations.
thanks in advance for any clarification