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