planner思考现在加入replyer
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user