mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-10 19:11:01 +00:00
16 lines
295 B
Python
16 lines
295 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",
|
|
]
|