You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
402 B
Java
14 lines
402 B
Java
package com.supervision.service;
|
|
|
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
|
import com.supervision.domain.GlobalResult;
|
|
|
|
public interface RasaService {
|
|
|
|
GlobalResult<String> generateRasaYml(String diseaseId);
|
|
|
|
GlobalResult<String> trainRasa(String patientId) throws JsonProcessingException;
|
|
|
|
GlobalResult<String> runRasa(String patientId) throws JsonProcessingException;
|
|
}
|