1
2
3
4
5
6
7
8
9
10
11
12
13
| package foundation.ai;
|
| import java.io.File;
|
| public abstract class AIProvider {
|
| protected abstract String getName();
|
| public abstract OCRResult executeAction(Operator operator, File file) throws Exception;
|
| public abstract OCRResult executeAction(Operator operator, Object paramObject) throws Exception;
|
| }
|
|