diff options
author | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-08-17 15:30:52 +0200 |
---|---|---|
committer | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-08-17 15:30:52 +0200 |
commit | 74ecdee78466104e57eb7488e682b564988fcd88 (patch) | |
tree | bbc764ba3248e80f20dde55e5b382b3f3d382575 /g4f/typing.py | |
parent | add proxy and remove stream (diff) | |
parent | ~ (diff) | |
download | gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.gz gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.bz2 gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.lz gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.xz gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.tar.zst gpt4free-74ecdee78466104e57eb7488e682b564988fcd88.zip |
Diffstat (limited to 'g4f/typing.py')
-rw-r--r-- | g4f/typing.py | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/g4f/typing.py b/g4f/typing.py index e41a567a..2e123112 100644 --- a/g4f/typing.py +++ b/g4f/typing.py @@ -1,3 +1,15 @@ -from typing import Dict, NewType, Union, Optional, List, get_type_hints +from typing import Any, AsyncGenerator, Generator, NewType, Tuple, TypedDict, Union -sha256 = NewType('sha_256_hash', str)
\ No newline at end of file +SHA256 = NewType("sha_256_hash", str) +CreateResult = Generator[str, None, None] + + +__all__ = [ + "Any", + "AsyncGenerator", + "Generator", + "Tuple", + "TypedDict", + "SHA256", + "CreateResult", +] |