using FreeRedis;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VideoAnalysisCore.Enum;
using VideoAnalysisCore.Model.Dto;
namespace VideoAnalysisCore.AICore.ChatGPT.Dto
{
public class CallGPTRes
{
public CallGPTRes()
{
}
public CallGPTRes(TotalCaptionsDto captions)
{
this.TeacherSpeaking = captions.TeacherSpeaking;
this.TimeBase = captions.TimeBase;
this.StudentSpeaking = captions.StudentSpeaking;
}
///
/// 教师发言时间
/// 秒
///
public decimal TeacherSpeaking { get; set; } = 0;
///
/// 学生发言时间
/// 秒
///
public decimal StudentSpeaking { get; set; } = 0;
///
/// 高频词汇 从高到低
///
public string[] Hotwords { get; set; }
///
/// 教师提问类型
///
public Dictionary? QuestionType { get; set; }
///
/// 时间段概览
///
public IEnumerable? TimeOverview { get; set; }
///
/// 视频时间轴
///
public IEnumerable? TimeBase { get; set; }
///
/// GPT模型id
///
public string GPTModel { get; set; } = string.Empty;
///
/// AI综合评估
///
public AssessmentDto Assessment { get; set; } = default!;
}
}