├── WebChat ├── __init__.py ├── asgi.py ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── bots ├── __init__.py ├── admin.py ├── apps.py ├── chatGPT │ ├── __init__.py │ ├── config.py │ ├── gpt_robot.py │ └── readme.md ├── consumers.py ├── migrations │ └── __init__.py ├── models.py ├── online_robots │ ├── __init__.py │ ├── sizhi.py │ ├── tuling.py │ └── xiaov.py ├── routing.py ├── static │ └── images │ │ ├── qcode.png │ │ └── weixin.jpg ├── tasks.py ├── tasks_test.py ├── templates │ ├── bots │ │ └── index.html │ └── readme.md ├── tests.py ├── urls.py └── views.py ├── manage.py ├── readme.md └── requirements.txt /WebChat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/WebChat/__init__.py -------------------------------------------------------------------------------- /WebChat/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/WebChat/asgi.py -------------------------------------------------------------------------------- /WebChat/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/WebChat/celery.py -------------------------------------------------------------------------------- /WebChat/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/WebChat/settings.py -------------------------------------------------------------------------------- /WebChat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/WebChat/urls.py -------------------------------------------------------------------------------- /WebChat/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/WebChat/wsgi.py -------------------------------------------------------------------------------- /bots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/admin.py -------------------------------------------------------------------------------- /bots/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/apps.py -------------------------------------------------------------------------------- /bots/chatGPT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/chatGPT/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/chatGPT/config.py -------------------------------------------------------------------------------- /bots/chatGPT/gpt_robot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/chatGPT/gpt_robot.py -------------------------------------------------------------------------------- /bots/chatGPT/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/chatGPT/readme.md -------------------------------------------------------------------------------- /bots/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/consumers.py -------------------------------------------------------------------------------- /bots/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/models.py -------------------------------------------------------------------------------- /bots/online_robots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/online_robots/__init__.py -------------------------------------------------------------------------------- /bots/online_robots/sizhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/online_robots/sizhi.py -------------------------------------------------------------------------------- /bots/online_robots/tuling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/online_robots/tuling.py -------------------------------------------------------------------------------- /bots/online_robots/xiaov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/online_robots/xiaov.py -------------------------------------------------------------------------------- /bots/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/routing.py -------------------------------------------------------------------------------- /bots/static/images/qcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/static/images/qcode.png -------------------------------------------------------------------------------- /bots/static/images/weixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/static/images/weixin.jpg -------------------------------------------------------------------------------- /bots/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/tasks.py -------------------------------------------------------------------------------- /bots/tasks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/tasks_test.py -------------------------------------------------------------------------------- /bots/templates/bots/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/templates/bots/index.html -------------------------------------------------------------------------------- /bots/templates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/templates/readme.md -------------------------------------------------------------------------------- /bots/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/tests.py -------------------------------------------------------------------------------- /bots/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/urls.py -------------------------------------------------------------------------------- /bots/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/bots/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/manage.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbchen121/WebChat/HEAD/requirements.txt --------------------------------------------------------------------------------