Releases: st1vms/unofficial-claude-api
Releases · st1vms/unofficial-claude-api
v0.2.3
CHANGELOG
-
BUGFIXES:
- Fixed 403 error by using
curl_cffi
withimpersonate=chrome110
parameter. - Cookies are now used consistently across requests.
- Fixed json payload length by setting
indent=0, separators=(",", ":")
injson.dumps()
.
- Fixed 403 error by using
-
PLATFORM UPDATE FIXES:
- Updated headers to reflect Claude's platform changes/updates. ( Model was updated to claude-2.1)
- File attachment size limit was decreased to
10MB
for each file. - Implemented response decoding for
(gzip, deflate, br)
.
-
MISCELLANOUS CHANGES:
- Added
timeout
parameter toClaudeAPIClient
for setting requests timeout globally. SendMessageResponse.error_response
is now astr
instead of adict
object.- Clarified the usage of
ClaudeAPIClient.get_chat_data()
inREADME.md
- Updated README.md to reflect new features.
- Added
-
HOTFIX 0.2.3
session
module now usesselgym
library for auto session gathering ( fixed Firefox path retrieval on Windows ).
v0.1.9
v0.1.7
CHANGELOG:
Update to 0.1.7
- Added multiple file attachments, up to 5, 20MB each.
- Added extra validations and error checks for when preparing files.
- Separated client and session modules into their own files.
- Clarified
SessionData
manual usage for faster loading. - Improved wildcard imports
- Updated
README.md
HOTFIX
- Fixed UnicodeDecodeError on error_response parsing.