├── .gitignore ├── LICENSE ├── README.md ├── service ├── app.py ├── models │ ├── basic.json │ ├── ecommerce.json │ ├── finance.json │ └── healthcare.json ├── requirements.txt └── scripts │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── api.cpython-310.pyc │ ├── gpt.cpython-310.pyc │ └── logic.cpython-310.pyc │ ├── api.py │ ├── gpt.py │ ├── logic.py │ └── prompt.txt └── tests ├── data ├── ecommerce.py ├── finance.py └── healthcare.py ├── test.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/README.md -------------------------------------------------------------------------------- /service/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/app.py -------------------------------------------------------------------------------- /service/models/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/models/basic.json -------------------------------------------------------------------------------- /service/models/ecommerce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/models/ecommerce.json -------------------------------------------------------------------------------- /service/models/finance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/models/finance.json -------------------------------------------------------------------------------- /service/models/healthcare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/models/healthcare.json -------------------------------------------------------------------------------- /service/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | openai 3 | python-dotenv 4 | regex -------------------------------------------------------------------------------- /service/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/scripts/__init__.py -------------------------------------------------------------------------------- /service/scripts/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/scripts/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /service/scripts/__pycache__/api.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/scripts/__pycache__/api.cpython-310.pyc -------------------------------------------------------------------------------- /service/scripts/__pycache__/gpt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/scripts/__pycache__/gpt.cpython-310.pyc -------------------------------------------------------------------------------- /service/scripts/__pycache__/logic.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/scripts/__pycache__/logic.cpython-310.pyc -------------------------------------------------------------------------------- /service/scripts/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/scripts/api.py -------------------------------------------------------------------------------- /service/scripts/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/scripts/gpt.py -------------------------------------------------------------------------------- /service/scripts/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/scripts/logic.py -------------------------------------------------------------------------------- /service/scripts/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/service/scripts/prompt.txt -------------------------------------------------------------------------------- /tests/data/ecommerce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/tests/data/ecommerce.py -------------------------------------------------------------------------------- /tests/data/finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/tests/data/finance.py -------------------------------------------------------------------------------- /tests/data/healthcare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/tests/data/healthcare.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WenServices/ClassifyAI/HEAD/tests/utils.py --------------------------------------------------------------------------------