mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 10:53:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			200 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			200 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"
 | 
