5f5edb1e6d
- 상담 기록 분석 및 요약 - 상담 기록 db 저장 - 상담 평가 - 상담 평가 db 저장
14 lines
360 B
Python
14 lines
360 B
Python
from pydantic import BaseModel
|
|
from datetime import datetime
|
|
|
|
class EvaluationResponse(BaseModel):
|
|
identity_verification:bool
|
|
identity_verification_reason:str
|
|
empathy:bool
|
|
empathy_reason:str
|
|
issue_resolution:bool
|
|
issue_resolution_reason:str
|
|
survey_guidance:bool
|
|
survey_guidance_reason:str
|
|
score: int
|
|
created_at: datetime |