mirror of
https://github.com/langgenius/dify.git
synced 2025-07-11 19:23:10 +00:00
11 lines
201 B
Python
11 lines
201 B
Python
![]() |
from enum import Enum
|
||
|
|
||
|
|
||
|
class Field(Enum):
|
||
|
CONTENT_KEY = "page_content"
|
||
|
METADATA_KEY = "metadata"
|
||
|
GROUP_KEY = "group_id"
|
||
|
VECTOR = "vector"
|
||
|
TEXT_KEY = "text"
|
||
|
PRIMARY_KEY = " id"
|