-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from st1vms/dev-0.3.1
Project Rename! Needs repo rename!
- Loading branch information
Showing
7 changed files
with
44 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
"""unofficial-claude-api""" | ||
from .client import ( | ||
ClaudeAPIClient, | ||
SendMessageResponse, | ||
HTTPProxy, | ||
) | ||
from .session import SessionData, get_session_data | ||
from .errors import ClaudeAPIError, MessageRateLimitError, OverloadError | ||
|
||
|
||
__all__ = [ | ||
"ClaudeAPIClient", | ||
"SendMessageResponse", | ||
"HTTPProxy", | ||
"SessionData", | ||
"get_session_data", | ||
"MessageRateLimitError", | ||
"ClaudeAPIError", | ||
"OverloadError", | ||
] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
from os.path import dirname, join, abspath | ||
from setuptools import setup, find_packages | ||
|
||
__DESCRIPTION = """Unofficial Claude2 API supporting direct HTTP chat creation/deletion/retrieval, \ | ||
multiple message attachments, proxies and auto session gathering using Firefox with geckodriver. \ | ||
""" | ||
__DESCRIPTION = """This unofficial Python API provides access to \ | ||
the conversational capabilities of Anthropic's Claude AI \ | ||
through a simple chat messaging interface.""" | ||
|
||
with open( | ||
join(abspath(dirname(__file__)), "README.md"), | ||
|
@@ -15,14 +15,14 @@ | |
__LONG_DESCRIPTION = fp.read().lstrip().rstrip() | ||
|
||
setup( | ||
name="unofficial-claude2-api", | ||
version="0.3.0", | ||
name="unofficial-claude-api", | ||
version="0.3.1", | ||
author="st1vms", | ||
author_email="[email protected]", | ||
description=__DESCRIPTION, | ||
long_description=__LONG_DESCRIPTION, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/st1vms/unofficial-claude2-api", | ||
url="https://github.com/st1vms/unofficial-claude-api", | ||
packages=find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.10", | ||
|