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

XFEstudio/gpt4free

fix: remove debug print statement from ARTA provider

- Removed a debug print statement that was logging the payload being sent in the ARTA provider - The removed line was printing form_data with the message "Sending payload: {form_data}" - This change helps clean up unnecessary logging in the production code

db88fac7
kqlio67 <kqlio67.noreply.github.com>
提交于

代码差异

1 个文件 +0 -3
Modified g4f/Provider/ARTA.py +0 -3
@@ -167,9 +167,6 @@ class ARTA(AsyncGeneratorProvider, ProviderModelMixin):
167 167 "seed": str(seed),
168 168 }
169 169
170 # Debug: Print the payload being sent
171 print(f"Sending payload: {form_data}")
172
173 170 headers = {
174 171 "Authorization": auth_token,
175 172 # No Content-Type header for multipart/form-data, aiohttp sets it automatically