mirror of
				https://github.com/HKUDS/LightRAG.git
				synced 2025-10-31 09:49:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			171 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			171 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from pydantic import BaseModel
 | |
| from typing import List
 | |
| 
 | |
| 
 | |
| class GPTKeywordExtractionFormat(BaseModel):
 | |
|     high_level_keywords: List[str]
 | |
|     low_level_keywords: List[str]
 | 
