mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
6 lines
231 B
Python
6 lines
231 B
Python
from ..providers.types import BaseProvider, ProviderType
|
|
from typing import Union, Iterator
|
|
ImageProvider = Union[BaseProvider, object]
|
|
Proxies = Union[dict, str]
|
|
IterResponse = Iterator[Union[ChatCompletion, ChatCompletionChunk]]
|