mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 10:53:02 +00:00 
			
		
		
		
	
		
			
	
	
		
			11 lines
		
	
	
		
			154 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			154 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | from enum import Enum | ||
|  | 
 | ||
|  | 
 | ||
|  | class EmbeddingInputType(Enum): | ||
|  |     """
 | ||
|  |     Enum for embedding input type. | ||
|  |     """
 | ||
|  | 
 | ||
|  |     DOCUMENT = "document" | ||
|  |     QUERY = "query" |