Example #1
0
        public async Task <IActionResult> GetAll()
        {
            var histories = await inferenceHistoryRepository.GetAllNameAsync();

            return(JsonOK(histories.Select(history => new InferenceSimpleOutputModel(history))));
        }