gpt4free/g4f/typing.py

14 lines
293 B
Python
Raw Normal View History

2023-08-17 15:57:37 +03:00
from typing import Any, AsyncGenerator, Generator, NewType, Tuple, TypedDict, Union
2023-06-24 04:47:00 +03:00
2023-08-27 18:37:44 +03:00
SHA256 = NewType('sha_256_hash', str)
2023-07-28 13:07:17 +03:00
CreateResult = Generator[str, None, None]
__all__ = [
2023-08-27 18:37:44 +03:00
'Any',
'AsyncGenerator',
'Generator',
'Tuple',
'TypedDict',
'SHA256',
'CreateResult',
2023-08-25 19:30:59 +03:00
]