├── LICENSE.txt ├── README.md ├── code ├── ai_main.py ├── datetime.py ├── img │ ├── battery │ │ ├── bat_00.png │ │ ├── bat_01.png │ │ ├── bat_02.png │ │ ├── bat_03.png │ │ ├── bat_04.png │ │ ├── bat_05.png │ │ ├── bat_06.png │ │ ├── bat_07.png │ │ ├── bat_08.png │ │ └── bat_09.png │ ├── image1.png │ ├── image1_80.png │ ├── image2.png │ ├── image2_80.png │ └── signal │ │ ├── signal_00.png │ │ ├── signal_01.png │ │ ├── signal_02.png │ │ ├── signal_03.png │ │ ├── signal_04.png │ │ └── signal_05.png ├── jobs.py ├── lcd_config.py ├── logging.py ├── pypubsub.py ├── scheduler.py ├── threading.py └── ui.py ├── docs └── zh │ └── media │ └── wire_connection.jpg └── example └── example_ai.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/README.md -------------------------------------------------------------------------------- /code/ai_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/ai_main.py -------------------------------------------------------------------------------- /code/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/datetime.py -------------------------------------------------------------------------------- /code/img/battery/bat_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_00.png -------------------------------------------------------------------------------- /code/img/battery/bat_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_01.png -------------------------------------------------------------------------------- /code/img/battery/bat_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_02.png -------------------------------------------------------------------------------- /code/img/battery/bat_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_03.png -------------------------------------------------------------------------------- /code/img/battery/bat_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_04.png -------------------------------------------------------------------------------- /code/img/battery/bat_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_05.png -------------------------------------------------------------------------------- /code/img/battery/bat_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_06.png -------------------------------------------------------------------------------- /code/img/battery/bat_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_07.png -------------------------------------------------------------------------------- /code/img/battery/bat_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_08.png -------------------------------------------------------------------------------- /code/img/battery/bat_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/battery/bat_09.png -------------------------------------------------------------------------------- /code/img/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/image1.png -------------------------------------------------------------------------------- /code/img/image1_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/image1_80.png -------------------------------------------------------------------------------- /code/img/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/image2.png -------------------------------------------------------------------------------- /code/img/image2_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/image2_80.png -------------------------------------------------------------------------------- /code/img/signal/signal_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/signal/signal_00.png -------------------------------------------------------------------------------- /code/img/signal/signal_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/signal/signal_01.png -------------------------------------------------------------------------------- /code/img/signal/signal_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/signal/signal_02.png -------------------------------------------------------------------------------- /code/img/signal/signal_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/signal/signal_03.png -------------------------------------------------------------------------------- /code/img/signal/signal_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/signal/signal_04.png -------------------------------------------------------------------------------- /code/img/signal/signal_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/img/signal/signal_05.png -------------------------------------------------------------------------------- /code/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/jobs.py -------------------------------------------------------------------------------- /code/lcd_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/lcd_config.py -------------------------------------------------------------------------------- /code/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/logging.py -------------------------------------------------------------------------------- /code/pypubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/pypubsub.py -------------------------------------------------------------------------------- /code/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/scheduler.py -------------------------------------------------------------------------------- /code/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/threading.py -------------------------------------------------------------------------------- /code/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/code/ui.py -------------------------------------------------------------------------------- /docs/zh/media/wire_connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/docs/zh/media/wire_connection.jpg -------------------------------------------------------------------------------- /example/example_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuecPython/AIChatBot-Volcengine-webRTC/HEAD/example/example_ai.py --------------------------------------------------------------------------------