XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Create types.py

366969f5
H Lohaus <hlohaus@users.noreply.github.com>
提交于

代码差异

1 个文件 +5 -0
Added g4f/client/types.py +5 -0
@@ -0,0 +1,5 @@
1 from ..providers.types import BaseProvider, ProviderType
2 from typing import Union, Iterator
3 ImageProvider = Union[BaseProvider, object]
4 Proxies = Union[dict, str]
5 IterResponse = Iterator[Union[ChatCompletion, ChatCompletionChunk]]