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