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.
18 lines
520 B
Java
18 lines
520 B
Java
package com.supervision.rasa.service;
|
|
|
|
import com.supervision.rasa.pojo.vo.RasaCmdArgumentVo;
|
|
|
|
import java.io.IOException;
|
|
import java.util.concurrent.ExecutionException;
|
|
import java.util.concurrent.TimeoutException;
|
|
|
|
public interface RasaCmdService {
|
|
|
|
String trainExec(RasaCmdArgumentVo argument) throws IOException, ExecutionException, InterruptedException, TimeoutException;
|
|
|
|
String runExec( RasaCmdArgumentVo argument) throws ExecutionException, InterruptedException, TimeoutException;
|
|
|
|
void test();
|
|
|
|
}
|