VirtuosoQ
2024-04-28 476dc3f30c014e0d2ebdc46ce0283ddbfe63eeb8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.example.funasr_java_client.Servcvice;
 
import org.springframework.web.multipart.MultipartFile;
 
import java.io.IOException;
import java.util.concurrent.ExecutionException;
 
 
/**
 *
 * @author Virgil Qiu
 * @since 2024/04/24
 *
 */
 
public interface RecognitionService {
 
    Object recognition(MultipartFile file) throws IOException, ExecutionException, InterruptedException;
}