├── .dockerignore ├── .github └── workflows │ ├── docker-image.yml │ └── package-exe.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config.py ├── config.yml ├── cxapi ├── __init__.py ├── api.py ├── base.py ├── chapters.py ├── classes.py ├── exam.py ├── exception.py ├── face_detection.py ├── schema.py ├── session.py ├── task_point │ ├── __init__.py │ ├── document.py │ ├── video.py │ └── work.py └── utils.py ├── dialog.py ├── imgs ├── demo1.png ├── demo2.png ├── demo3.png ├── demo4.png └── typo.png ├── logger.py ├── main.py ├── poetry.lock ├── pyproject.toml ├── resolver ├── __init__.py ├── document.py ├── media.py ├── question.py └── searcher │ ├── __init__.py │ ├── json.py │ ├── restapi.py │ └── sqlite.py └── utils.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/package-exe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/.github/workflows/package-exe.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/config.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/config.yml -------------------------------------------------------------------------------- /cxapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/__init__.py -------------------------------------------------------------------------------- /cxapi/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/api.py -------------------------------------------------------------------------------- /cxapi/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/base.py -------------------------------------------------------------------------------- /cxapi/chapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/chapters.py -------------------------------------------------------------------------------- /cxapi/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/classes.py -------------------------------------------------------------------------------- /cxapi/exam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/exam.py -------------------------------------------------------------------------------- /cxapi/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/exception.py -------------------------------------------------------------------------------- /cxapi/face_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/face_detection.py -------------------------------------------------------------------------------- /cxapi/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/schema.py -------------------------------------------------------------------------------- /cxapi/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/session.py -------------------------------------------------------------------------------- /cxapi/task_point/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/task_point/__init__.py -------------------------------------------------------------------------------- /cxapi/task_point/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/task_point/document.py -------------------------------------------------------------------------------- /cxapi/task_point/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/task_point/video.py -------------------------------------------------------------------------------- /cxapi/task_point/work.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/task_point/work.py -------------------------------------------------------------------------------- /cxapi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/cxapi/utils.py -------------------------------------------------------------------------------- /dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/dialog.py -------------------------------------------------------------------------------- /imgs/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/imgs/demo1.png -------------------------------------------------------------------------------- /imgs/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/imgs/demo2.png -------------------------------------------------------------------------------- /imgs/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/imgs/demo3.png -------------------------------------------------------------------------------- /imgs/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/imgs/demo4.png -------------------------------------------------------------------------------- /imgs/typo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/imgs/typo.png -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/logger.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/pyproject.toml -------------------------------------------------------------------------------- /resolver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/resolver/__init__.py -------------------------------------------------------------------------------- /resolver/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/resolver/document.py -------------------------------------------------------------------------------- /resolver/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/resolver/media.py -------------------------------------------------------------------------------- /resolver/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/resolver/question.py -------------------------------------------------------------------------------- /resolver/searcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/resolver/searcher/__init__.py -------------------------------------------------------------------------------- /resolver/searcher/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/resolver/searcher/json.py -------------------------------------------------------------------------------- /resolver/searcher/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/resolver/searcher/restapi.py -------------------------------------------------------------------------------- /resolver/searcher/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/resolver/searcher/sqlite.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrakLeader/CxKitty/HEAD/utils.py --------------------------------------------------------------------------------