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

XFEstudio/gpt4free

Update client

8bbc1012
H Lohaus <hlohaus@users.noreply.github.com>
提交于

代码差异

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