gpt4free/g4f/typing.py

16 lines
288 B
Python
Raw Normal View History

2023-07-28 06:07:17 -04:00
from typing import Any, AsyncGenerator, Generator, NewType, Tuple, TypedDict
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",
]