Files
smartDriveEE/src/main/java/com/rj/config/YihangyiVllmAsrExecutorMode.java

12 lines
329 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.rj.config;
/**
* yihangyi 目录轮询 ASR单线程顺序处理或线程池并行处理本批文件。
*/
public enum YihangyiVllmAsrExecutorMode {
/** 同批文件逐个处理(与 Python 脚本一致)。 */
SINGLE,
/** 同批文件提交到固定大小线程池并行处理。 */
POOL
}