planner思考现在加入replyer

This commit is contained in:
SengokuCola
2025-11-16 00:16:23 +08:00
parent 0123d68578
commit 22dca15f0a
5 changed files with 23 additions and 3 deletions

View File

@@ -335,6 +335,8 @@ class Jargon(BaseModel):
is_jargon = BooleanField(null=True) # None表示未判定True表示是黑话False表示不是黑话
last_inference_count = IntegerField(null=True) # 最后一次判定的count值用于避免重启后重复判定
is_complete = BooleanField(default=False) # 是否已完成所有推断count>=100后不再推断
inference_with_context = TextField(null=True) # 基于上下文的推断结果JSON格式
inference_content_only = TextField(null=True) # 仅基于词条的推断结果JSON格式
class Meta:
table_name = "jargon"