返回提交历史
Modified
g4f/Provider/ARTA.py
+0
-3
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
代码差异
1 个文件
+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