gpt4free/g4f/typing.py

15 lines
294 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-07-28 06:07:17 -04:00
SHA256 = NewType("sha_256_hash", str)
CreateResult = Generator[str, None, None]
__all__ = [
"Any",
"AsyncGenerator",
"Generator",
"Tuple",
"TypedDict",
"SHA256",
"CreateResult",
2023-08-25 12:30:59 -04:00
]