Example #1
0
    public async ValueTask <ActionResult <TypingReport> > GetTypingReportForUserSession(string userSessionId, TextGenerationType textGenerationType = TextGenerationType.GeneratedStardardText)
    {
        var report = await _typingReportGenerator.GenerateReportForUserSessionAsync(userSessionId, textGenerationType);

        return(Ok(report));
    }