mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-29 18:03:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			272 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			272 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from flask_restful import fields
 | |
| 
 | |
| from libs.helper import TimestampField
 | |
| 
 | |
| external_knowledge_api_query_detail_fields = {
 | |
|     "id": fields.String,
 | |
|     "name": fields.String,
 | |
|     "setting": fields.String,
 | |
|     "created_by": fields.String,
 | |
|     "created_at": TimestampField,
 | |
| }
 | 
