mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-26 12:41:56 +03:00
15 lines
294 B
Python
15 lines
294 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",
|
|
] |