using VideoAnalysisCore.AICore.ChatGPT.Dto;
using VideoAnalysisCore.AICore.SherpaOnnx;
using VideoAnalysisCore.Common;
using Whisper.net;
namespace VideoAnalysisCore.AICore.ChatGPT
{
///
/// GPT 接口
///
public interface IBserGPT
{
///
/// 访问GPT
///
/// 任务id
///
public Task CallGPT(string task);
}
}