Add Concept and NaturalObject to default entity types
This commit is contained in:
parent
f7aa108cc2
commit
41cdeaeaad
2 changed files with 3 additions and 1 deletions
|
|
@ -125,7 +125,7 @@ ENABLE_LLM_CACHE_FOR_EXTRACT=true
|
|||
SUMMARY_LANGUAGE=English
|
||||
|
||||
### Entity types that the LLM will attempt to recognize
|
||||
# ENTITY_TYPES='["Person", "Organization", "Location", "Event", "Artifact", "CreativeWork"]'
|
||||
# ENTITY_TYPES='["Person", "Organization", "Location", "Event", "Concept", "Artifact", "CreativeWork", "NaturalObject"]'
|
||||
|
||||
### Chunk size for document splitting, 500~1500 is recommended
|
||||
# CHUNK_SIZE=1200
|
||||
|
|
|
|||
|
|
@ -28,8 +28,10 @@ DEFAULT_ENTITY_TYPES = [
|
|||
"Organization",
|
||||
"Location",
|
||||
"Event",
|
||||
"Concept",
|
||||
"Artifact",
|
||||
"CreativeWork",
|
||||
"NaturalObject",
|
||||
]
|
||||
|
||||
# Separator for graph fields
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue