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

XFEstudio/gpt4free

Update live image

c4d4e3ab
hlohaus <983577+hlohaus@users.noreply.github.com>
提交于

代码差异

2 个文件 +1 -2
Modified docker/Dockerfile-slim +1 -1
@@ -36,4 +36,4 @@ RUN git clone https://github.com/hlohaus/deepseek4free.git \
36 36 && cd deepseek4free && git checkout 21Feb \
37 37 && pip install --no-cache-dir . && cd .. && rm -rf deepseek4free
38 38
39 CMD docker/update.sh & docker/start.sh
39 CMD git pull origin main && docker/update.sh & docker/start.sh
Modified g4f/providers/base_provider.py +0 -1
@@ -21,7 +21,6 @@ from .response import BaseConversation, AuthResult
21 21 from .helper import concat_chunks
22 22 from ..cookies import get_cookies_dir
23 23 from ..errors import ModelNotFoundError, ResponseError, MissingAuthError, NoValidHarFileError, PaymentRequiredError
24 from .. import debug
25 24
26 25 SAFE_PARAMETERS = [
27 26 "model", "messages", "stream", "timeout",