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.
14 lines
318 B
Java
14 lines
318 B
Java
1 year ago
|
package com.supervision.service;
|
||
|
|
||
|
import com.supervision.vo.voice.VoiceReqVO;
|
||
|
import org.springframework.web.multipart.MultipartFile;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
public interface VoiceService {
|
||
|
|
||
|
String voiceToText(MultipartFile file, String sessionId) throws IOException;
|
||
|
|
||
|
String textToVoice(String text);
|
||
|
}
|