mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-26 12:41:56 +03: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',
|
|
] |