├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── greetings.yml │ ├── hugchat_integration_test.yml │ ├── hugchat_unit_test.yml │ ├── lint-pull-requests.yml │ ├── python-publish.yml │ └── stale.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_cn.md ├── setup.py └── src ├── __init__.py ├── hugchat ├── __init__.py ├── cli.py ├── exceptions.py ├── hugchat.py ├── login.py ├── message.py └── types │ ├── assistant.py │ ├── file.py │ ├── message.py │ ├── model.py │ └── tool.py ├── integration_test.py └── unit_test.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/hugchat_integration_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/.github/workflows/hugchat_integration_test.yml -------------------------------------------------------------------------------- /.github/workflows/hugchat_unit_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/.github/workflows/hugchat_unit_test.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pull-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/.github/workflows/lint-pull-requests.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/README_cn.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hugchat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hugchat/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/cli.py -------------------------------------------------------------------------------- /src/hugchat/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/exceptions.py -------------------------------------------------------------------------------- /src/hugchat/hugchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/hugchat.py -------------------------------------------------------------------------------- /src/hugchat/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/login.py -------------------------------------------------------------------------------- /src/hugchat/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/message.py -------------------------------------------------------------------------------- /src/hugchat/types/assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/types/assistant.py -------------------------------------------------------------------------------- /src/hugchat/types/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/types/file.py -------------------------------------------------------------------------------- /src/hugchat/types/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/types/message.py -------------------------------------------------------------------------------- /src/hugchat/types/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/types/model.py -------------------------------------------------------------------------------- /src/hugchat/types/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/hugchat/types/tool.py -------------------------------------------------------------------------------- /src/integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/integration_test.py -------------------------------------------------------------------------------- /src/unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cometdev312/HuggingChat-Python-API/HEAD/src/unit_test.py --------------------------------------------------------------------------------