gpt4free/g4f/typing.py

43 lines
875 B
Python
Raw Normal View History

import sys
from typing import Any, AsyncGenerator, Generator, AsyncIterator, Iterator, NewType, Tuple, Union, List, Dict, Type, IO, Optional
try:
from PIL.Image import Image
except ImportError:
from typing import Type as Image
if sys.version_info >= (3, 8):
from typing import TypedDict
else:
from typing_extensions import TypedDict
2023-06-23 21:47:00 -04:00
2023-08-27 11:37:44 -04:00
SHA256 = NewType('sha_256_hash', str)
CreateResult = Iterator[str]
AsyncResult = AsyncIterator[str]
Messages = List[Dict[str, str]]
Cookies = Dict[str, str]
ImageType = Union[str, bytes, IO, Image, None]
2023-07-28 06:07:17 -04:00
__all__ = [
2023-08-27 11:37:44 -04:00
'Any',
'AsyncGenerator',
'Generator',
'AsyncIterator',
'Iterator'
2023-08-27 11:37:44 -04:00
'Tuple',
2024-01-20 20:20:23 -05:00
'Union',
'List',
'Dict',
'Type',
2024-01-23 18:46:35 -05:00
'IO',
'Optional',
2023-08-27 11:37:44 -04:00
'TypedDict',
2023-09-17 17:23:54 -04:00
'SHA256',
'CreateResult',
2024-01-20 20:20:23 -05:00
'AsyncResult',
'Messages',
'Cookies',
'Image',
2024-01-20 20:20:23 -05:00
'ImageType'
]