mirror of
				https://github.com/microsoft/OmniParser.git
				synced 2025-02-18 03:18:33 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			235 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			235 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from .base import ToolResult
 | |
| from .collection import ToolCollection
 | |
| from .computer import ComputerTool
 | |
| from .screen_capture import get_screenshot
 | |
| 
 | |
| __ALL__ = [
 | |
|     ComputerTool,
 | |
|     ToolCollection,
 | |
|     ToolResult,
 | |
|     get_screenshot,
 | |
| ]
 | 
