We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getBestResponse
Currently, getBestResponse fails when the task is not completed, but this is really bad for UI & UX.
Instead, it should return the task status along with the best response it has at that point.
(PendingGeneration, firstGeneration | "")
(PendingValidation, firstGeneration)
(Completed, highestScoreGeneration)
In the currenty implementation the first two cases throw an error which need to be handled and it sucks.
The text was updated successfully, but these errors were encountered:
erhant
No branches or pull requests
Currently,
getBestResponse
fails when the task is not completed, but this is really bad for UI & UX.Instead, it should return the task status along with the best response it has at that point.
(PendingGeneration, firstGeneration | "")
(PendingValidation, firstGeneration)
(Completed, highestScoreGeneration)
In the currenty implementation the first two cases throw an error which need to be handled and it sucks.
The text was updated successfully, but these errors were encountered: