gpt4free/g4f/typing.py

14 lines
293 B
Python
Raw Normal View History

2023-08-17 08:57:37 -04:00
from typing import Any, AsyncGenerator, Generator, NewType, Tuple, TypedDict, Union
2023-06-23 21:47:00 -04:00
2023-08-27 11:37:44 -04:00
SHA256 = NewType('sha_256_hash', str)
2023-07-28 06:07:17 -04:00
CreateResult = Generator[str, None, None]
__all__ = [
2023-08-27 11:37:44 -04:00
'Any',
'AsyncGenerator',
'Generator',
'Tuple',
'TypedDict',
'SHA256',
'CreateResult',
2023-08-25 12:30:59 -04:00
]