diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-08 13:59:56 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-08 13:59:56 +0200 |
commit | 6401084fd0d23b75a883888f70cd705e4cacd202 (patch) | |
tree | 9750cb102284d9445d60c539f4e6d3586603e917 /g4f/typing.py | |
parent | Add Cromicle to provider list (diff) | |
download | gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.gz gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.bz2 gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.lz gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.xz gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.tar.zst gpt4free-6401084fd0d23b75a883888f70cd705e4cacd202.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/typing.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/g4f/typing.py b/g4f/typing.py index 5f63c222..840e4624 100644 --- a/g4f/typing.py +++ b/g4f/typing.py @@ -1,5 +1,5 @@ import sys -from typing import Any, AsyncGenerator, Generator, NewType, Tuple, Union +from typing import Any, AsyncGenerator, Generator, NewType, Tuple, Union, List, Dict if sys.version_info >= (3, 8): from typing import TypedDict @@ -8,6 +8,8 @@ else: SHA256 = NewType('sha_256_hash', str) CreateResult = Generator[str, None, None] +AsyncResult = AsyncGenerator[str] +Messages = List[Dict[str, str]] __all__ = [ 'Any', |