You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not able to push pull request, but I found something that help you to resolve a bug in file: translate-transcript from line 66
function chat needs 10 arguments, last 3 are optional, but somehow you miss temperature that's why log_action is missed
try{returnawaitthis.chat(llm,service,model,userPrompt,systemMessage,(temperature=0.2),// !!!! <-------- You missed this arg, I'm not sure whre temperature comes from, So I leave default value as 0.20,(attempt)=>`Attempt ${attempt}: Detecting transcript language using ChatGPT`,`Language detected successfully.`,(attempt,error)=>`Attempt ${attempt} for language detection failed with error: ${error.message}. Retrying...`);}catch(error){thrownewError(`Language detection failed with error: ${error.message}`);}
The text was updated successfully, but these errors were encountered:
I am not able to push pull request, but I found something that help you to resolve a bug in file:
translate-transcript
from line 66function
chat
needs 10 arguments, last 3 are optional, but somehow you miss temperature that's whylog_action
is missedThe text was updated successfully, but these errors were encountered: