Author SHA1 Message Date
tmm621 fbd0019573 chore: add .gitignore, untrack __pycache__ 2026-07-27 20:26:39 +08:00
tmm621 0340a49da4 fix: bypass Windows system proxy in DeepSeek API calls 2026-07-27 20:20:59 +08:00
22 changed files with 5 additions and 1 deletions
+3
View File
@@ -0,0 +1,3 @@
__pycache__/
*.pyc
output/
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+2 -1
View File
@@ -77,7 +77,8 @@ class APIClient:
self.base_url,
headers=headers,
json=payload,
timeout=self.timeout
timeout=self.timeout,
proxies={"http": None, "https": None},
)
resp.raise_for_status()
return resp.json()
Binary file not shown.