diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-24 00:46:35 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-24 00:46:35 +0100 |
commit | 69ef224f92fcec3335a857305191678b886651e1 (patch) | |
tree | e2eb38fc678c68fa75b06631880172d164a9c7e7 /g4f/typing.py | |
parent | Add aiohttp_socks support (diff) | |
download | gpt4free-69ef224f92fcec3335a857305191678b886651e1.tar gpt4free-69ef224f92fcec3335a857305191678b886651e1.tar.gz gpt4free-69ef224f92fcec3335a857305191678b886651e1.tar.bz2 gpt4free-69ef224f92fcec3335a857305191678b886651e1.tar.lz gpt4free-69ef224f92fcec3335a857305191678b886651e1.tar.xz gpt4free-69ef224f92fcec3335a857305191678b886651e1.tar.zst gpt4free-69ef224f92fcec3335a857305191678b886651e1.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 a6a62e3f..fd4fd047 100644 --- a/g4f/typing.py +++ b/g4f/typing.py @@ -1,5 +1,5 @@ import sys -from typing import Any, AsyncGenerator, Generator, NewType, Tuple, Union, List, Dict, Type, IO +from typing import Any, AsyncGenerator, Generator, NewType, Tuple, Union, List, Dict, Type, IO, Optional from PIL.Image import Image if sys.version_info >= (3, 8): @@ -22,6 +22,8 @@ __all__ = [ 'List', 'Dict', 'Type', + 'IO', + 'Optional', 'TypedDict', 'SHA256', 'CreateResult', |