mirror of
				https://github.com/xtekky/gpt4free.git
				synced 2025-10-31 11:36:26 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			293 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			293 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from typing import Any, AsyncGenerator, Generator, NewType, Tuple, TypedDict, Union
 | |
| 
 | |
| SHA256 = NewType('sha_256_hash', str)
 | |
| CreateResult = Generator[str, None, None]
 | |
| 
 | |
| __all__ = [
 | |
|     'Any',
 | |
|     'AsyncGenerator',
 | |
|     'Generator',
 | |
|     'Tuple',
 | |
|     'TypedDict',
 | |
|     'SHA256',
 | |
|     'CreateResult',
 | |
| ] | 
