2026-07-02 23:13:23 +08:00
|
|
|
"""对话记录模型。"""
|
|
|
|
|
from sqlalchemy import Column, Integer, String, Text, TIMESTAMP, func
|
|
|
|
|
from insurance.db.compat import db
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ChatRecord(db.Model):
|
|
|
|
|
"""对话记录表。"""
|
|
|
|
|
__tablename__ = "insurance_chat_records"
|
|
|
|
|
|
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True)
|
|
|
|
|
user_id = Column(String(64), nullable=False, comment="用户 ID")
|
|
|
|
|
session_id = Column(String(128), nullable=False, comment="会话 ID")
|
|
|
|
|
role = Column(String(16), nullable=False, comment="角色: user/assistant")
|
|
|
|
|
content = Column(Text, nullable=False, comment="消息内容")
|
|
|
|
|
message_id = Column(String(128), comment="BaoDan 消息 ID")
|
2026-07-12 14:17:18 +08:00
|
|
|
model_id = Column(String(100), comment="模型 ID")
|
|
|
|
|
message_tokens = Column(Integer, default=0, comment="用户输入 token 数")
|
|
|
|
|
answer_tokens = Column(Integer, default=0, comment="助手回复 token 数")
|
2026-07-02 23:13:23 +08:00
|
|
|
rating = Column(String(16), comment="评分: helpful/not_helpful")
|
2026-07-12 14:17:18 +08:00
|
|
|
correction = Column(Text, comment="用户纠错内容")
|
2026-07-02 23:13:23 +08:00
|
|
|
created_at = Column(TIMESTAMP, server_default=func.now())
|
|
|
|
|
|
|
|
|
|
def to_dict(self):
|
|
|
|
|
return {
|
|
|
|
|
"id": self.id,
|
|
|
|
|
"user_id": self.user_id,
|
|
|
|
|
"session_id": self.session_id,
|
|
|
|
|
"role": self.role,
|
|
|
|
|
"content": self.content,
|
|
|
|
|
"message_id": self.message_id,
|
2026-07-12 14:17:18 +08:00
|
|
|
"model_id": self.model_id,
|
|
|
|
|
"message_tokens": self.message_tokens or 0,
|
|
|
|
|
"answer_tokens": self.answer_tokens or 0,
|
2026-07-02 23:13:23 +08:00
|
|
|
"rating": self.rating,
|
2026-07-12 14:17:18 +08:00
|
|
|
"correction": self.correction,
|
2026-07-02 23:13:23 +08:00
|
|
|
"created_at": str(self.created_at) if self.created_at else None,
|
|
|
|
|
}
|