├── .gitignore ├── CONTRIBUTING.MD ├── LICENSE ├── README.md ├── customer_site ├── firebase.json └── public │ └── index.html ├── firebase.json ├── functions ├── index.js └── package.json └── ml ├── .ipynb_checkpoints └── priority_classification-checkpoint.ipynb ├── example_fields_analytics.ipynb ├── priority_classification.ipynb └── resolution_time_regression.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .pyc 4 | .csv -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/README.md -------------------------------------------------------------------------------- /customer_site/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/customer_site/firebase.json -------------------------------------------------------------------------------- /customer_site/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/customer_site/public/index.html -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/functions/package.json -------------------------------------------------------------------------------- /ml/.ipynb_checkpoints/priority_classification-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/ml/.ipynb_checkpoints/priority_classification-checkpoint.ipynb -------------------------------------------------------------------------------- /ml/example_fields_analytics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/ml/example_fields_analytics.ipynb -------------------------------------------------------------------------------- /ml/priority_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/ml/priority_classification.ipynb -------------------------------------------------------------------------------- /ml/resolution_time_regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/ml-functions-helpdesk/HEAD/ml/resolution_time_regression.ipynb --------------------------------------------------------------------------------