Merge branch 'feature/20251219_lxc' into develop

This commit is contained in:
lixiangcheng1
2025-12-30 17:45:01 +08:00
4 changed files with 12 additions and 2 deletions

View File

@@ -26,6 +26,7 @@ class Document(Base):
"html4excel": False,
"graphrag": {
"use_graphrag": False,
"scene_name": "",
"entity_types": [
"organization",
"person",
@@ -33,7 +34,9 @@ class Document(Base):
"event",
"category"
],
"method": "general"
"method": "general",
"resolution": True,
"community": True
}
}, comment="default parser config")
chunk_num = Column(Integer, default=0, comment="chunk num")

View File

@@ -65,6 +65,7 @@ class Knowledge(Base):
"html4excel": False,
"graphrag": {
"use_graphrag": False,
"scene_name": "",
"entity_types": [
"organization",
"person",
@@ -72,7 +73,9 @@ class Knowledge(Base):
"event",
"category"
],
"method": "general"
"method": "general",
"resolution": True,
"community": True
}
},
comment="default parser config")