├── .gitattributes ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── ESP-IDF ├── ai_chat │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── CMakeLists.txt │ ├── Makefile │ ├── components │ │ ├── espressif__esp_lcd_touch_ft5x06 │ │ │ ├── .component_hash │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── esp_lcd_touch_ft5x06.c │ │ │ ├── idf_component.yml │ │ │ ├── include │ │ │ │ └── esp_lcd_touch_ft5x06.h │ │ │ └── license.txt │ │ └── my_board │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.projbuild │ │ │ ├── component.mk │ │ │ └── my_board_v1_0 │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ ├── board_def.h │ │ │ ├── board_def_s3.h │ │ │ ├── board_pins_config.c │ │ │ └── board_pins_config_s3.c │ ├── dependencies.lock │ ├── main │ │ ├── CMakeLists.txt │ │ ├── baidu_tts.c │ │ ├── baidu_tts.h │ │ ├── baidu_vtt.c │ │ ├── baidu_vtt.h │ │ ├── component.mk │ │ ├── font_alipuhui20.c │ │ ├── idf_component.yml │ │ ├── img_bilibili120.c │ │ ├── lv_gui.c │ │ ├── lv_gui.h │ │ ├── main.c │ │ ├── minimax_chat.c │ │ └── minimax_chat.h │ ├── partitions.csv │ ├── sdkconfig │ ├── sdkconfig.defaults │ └── sdkconfig.old └── emotion │ ├── README.md │ └── emotion.zip ├── LICENSE ├── README.md ├── README.pdf ├── python ├── Dify │ ├── esp32.yml │ └── test.py ├── classfy-model │ ├── classification_demo_dataset.ipynb │ ├── dataset │ │ └── dataset_furina.csv │ ├── furina_test.ipynb │ ├── hflrbt3 │ │ ├── added_tokens.json │ │ ├── config.json │ │ ├── special_tokens_map.json │ │ ├── tokenizer.json │ │ ├── tokenizer_config.json │ │ └── vocab.txt │ └── model_furina │ │ └── 从网盘下载模型文件.txt ├── computer_chat │ ├── assistant.py │ └── 注意 需要额外安装库 ollama.txt ├── requirements.txt ├── server-model │ ├── __pycache__ │ │ ├── API.cpython-39.pyc │ │ ├── chat_local.cpython-39.pyc │ │ ├── chat_local_manage.cpython-39.pyc │ │ ├── chat_local_manage_t.cpython-39.pyc │ │ ├── chat_mysql.cpython-39.pyc │ │ ├── classfy_model.cpython-39.pyc │ │ ├── file_dealing.cpython-39.pyc │ │ └── search_internet.cpython-39.pyc │ ├── chat_local.py │ ├── chat_local_manage.py │ ├── chat_local_manage_t.py │ ├── chat_mysql.py │ ├── classfy_model.py │ ├── file_dealing.py │ ├── http_server.py │ ├── http_server_t.py │ ├── http_server_xiaozhi.py │ ├── search_internet.py │ └── search_internet_local.py ├── test.ipynb ├── xiaozhi-ragflow │ ├── READEME.md │ ├── ragflow_mcp.py │ └── xiaozhi.config.json └── xiaozhi-server │ ├── local-tts │ ├── READEME.md │ ├── api.bat │ ├── api_v2.bat │ ├── config.py │ ├── config和api是GPTsovites文件夹下面的, 另外两个是服务器使用的文件.txt │ ├── gpt_sovits_v1.py │ └── 配置文件.txt │ └── 连接各种服务.md └── 代码分析 ├── 小智.md ├── 小智闹钟文档.md ├── 插件 ├── Screenshot_20250326_201012_com.jideos.jnotes.jpg ├── Screenshot_20250326_215027_com.jideos.jnotes.jpg ├── test_reqllm.py └── test_response.py ├── 服务器.md └── 服务器框图.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/.vscode/settings.json -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/CMakeLists.txt -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/Makefile -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/.component_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/.component_hash -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/CMakeLists.txt -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/README.md -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/esp_lcd_touch_ft5x06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/esp_lcd_touch_ft5x06.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/idf_component.yml -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/include/esp_lcd_touch_ft5x06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/include/esp_lcd_touch_ft5x06.h -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/espressif__esp_lcd_touch_ft5x06/license.txt -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/my_board/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/my_board/CMakeLists.txt -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/my_board/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/my_board/Kconfig.projbuild -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/my_board/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/my_board/component.mk -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board.h -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board_def.h -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board_def_s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board_def_s3.h -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board_pins_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board_pins_config.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board_pins_config_s3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/components/my_board/my_board_v1_0/board_pins_config_s3.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/dependencies.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/dependencies.lock -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/CMakeLists.txt -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/baidu_tts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/baidu_tts.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/baidu_tts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/baidu_tts.h -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/baidu_vtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/baidu_vtt.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/baidu_vtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/baidu_vtt.h -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/component.mk -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/font_alipuhui20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/font_alipuhui20.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/idf_component.yml -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/img_bilibili120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/img_bilibili120.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/lv_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/lv_gui.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/lv_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/lv_gui.h -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/main.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/minimax_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/minimax_chat.c -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/main/minimax_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/main/minimax_chat.h -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/partitions.csv -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/sdkconfig -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/sdkconfig.defaults -------------------------------------------------------------------------------- /ESP-IDF/ai_chat/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/ai_chat/sdkconfig.old -------------------------------------------------------------------------------- /ESP-IDF/emotion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/emotion/README.md -------------------------------------------------------------------------------- /ESP-IDF/emotion/emotion.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/ESP-IDF/emotion/emotion.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/README.pdf -------------------------------------------------------------------------------- /python/Dify/esp32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/Dify/esp32.yml -------------------------------------------------------------------------------- /python/Dify/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/Dify/test.py -------------------------------------------------------------------------------- /python/classfy-model/classification_demo_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/classfy-model/classification_demo_dataset.ipynb -------------------------------------------------------------------------------- /python/classfy-model/dataset/dataset_furina.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/classfy-model/dataset/dataset_furina.csv -------------------------------------------------------------------------------- /python/classfy-model/furina_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/classfy-model/furina_test.ipynb -------------------------------------------------------------------------------- /python/classfy-model/hflrbt3/added_tokens.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /python/classfy-model/hflrbt3/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/classfy-model/hflrbt3/config.json -------------------------------------------------------------------------------- /python/classfy-model/hflrbt3/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/classfy-model/hflrbt3/special_tokens_map.json -------------------------------------------------------------------------------- /python/classfy-model/hflrbt3/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/classfy-model/hflrbt3/tokenizer.json -------------------------------------------------------------------------------- /python/classfy-model/hflrbt3/tokenizer_config.json: -------------------------------------------------------------------------------- 1 | {"init_inputs": []} -------------------------------------------------------------------------------- /python/classfy-model/hflrbt3/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/classfy-model/hflrbt3/vocab.txt -------------------------------------------------------------------------------- /python/classfy-model/model_furina/从网盘下载模型文件.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/classfy-model/model_furina/从网盘下载模型文件.txt -------------------------------------------------------------------------------- /python/computer_chat/assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/computer_chat/assistant.py -------------------------------------------------------------------------------- /python/computer_chat/注意 需要额外安装库 ollama.txt: -------------------------------------------------------------------------------- 1 | 需要安装库 ollama -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/server-model/__pycache__/API.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/__pycache__/API.cpython-39.pyc -------------------------------------------------------------------------------- /python/server-model/__pycache__/chat_local.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/__pycache__/chat_local.cpython-39.pyc -------------------------------------------------------------------------------- /python/server-model/__pycache__/chat_local_manage.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/__pycache__/chat_local_manage.cpython-39.pyc -------------------------------------------------------------------------------- /python/server-model/__pycache__/chat_local_manage_t.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/__pycache__/chat_local_manage_t.cpython-39.pyc -------------------------------------------------------------------------------- /python/server-model/__pycache__/chat_mysql.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/__pycache__/chat_mysql.cpython-39.pyc -------------------------------------------------------------------------------- /python/server-model/__pycache__/classfy_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/__pycache__/classfy_model.cpython-39.pyc -------------------------------------------------------------------------------- /python/server-model/__pycache__/file_dealing.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/__pycache__/file_dealing.cpython-39.pyc -------------------------------------------------------------------------------- /python/server-model/__pycache__/search_internet.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/__pycache__/search_internet.cpython-39.pyc -------------------------------------------------------------------------------- /python/server-model/chat_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/chat_local.py -------------------------------------------------------------------------------- /python/server-model/chat_local_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/chat_local_manage.py -------------------------------------------------------------------------------- /python/server-model/chat_local_manage_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/chat_local_manage_t.py -------------------------------------------------------------------------------- /python/server-model/chat_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/chat_mysql.py -------------------------------------------------------------------------------- /python/server-model/classfy_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/classfy_model.py -------------------------------------------------------------------------------- /python/server-model/file_dealing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/file_dealing.py -------------------------------------------------------------------------------- /python/server-model/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/http_server.py -------------------------------------------------------------------------------- /python/server-model/http_server_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/http_server_t.py -------------------------------------------------------------------------------- /python/server-model/http_server_xiaozhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/http_server_xiaozhi.py -------------------------------------------------------------------------------- /python/server-model/search_internet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/search_internet.py -------------------------------------------------------------------------------- /python/server-model/search_internet_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/server-model/search_internet_local.py -------------------------------------------------------------------------------- /python/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/test.ipynb -------------------------------------------------------------------------------- /python/xiaozhi-ragflow/READEME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/xiaozhi-ragflow/READEME.md -------------------------------------------------------------------------------- /python/xiaozhi-ragflow/ragflow_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/xiaozhi-ragflow/ragflow_mcp.py -------------------------------------------------------------------------------- /python/xiaozhi-ragflow/xiaozhi.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/xiaozhi-ragflow/xiaozhi.config.json -------------------------------------------------------------------------------- /python/xiaozhi-server/local-tts/READEME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/xiaozhi-server/local-tts/READEME.md -------------------------------------------------------------------------------- /python/xiaozhi-server/local-tts/api.bat: -------------------------------------------------------------------------------- 1 | runtime\python.exe api.py 2 | pause 3 | -------------------------------------------------------------------------------- /python/xiaozhi-server/local-tts/api_v2.bat: -------------------------------------------------------------------------------- 1 | .\runtime\python api_v2.py 2 | pause 3 | -------------------------------------------------------------------------------- /python/xiaozhi-server/local-tts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/xiaozhi-server/local-tts/config.py -------------------------------------------------------------------------------- /python/xiaozhi-server/local-tts/config和api是GPTsovites文件夹下面的, 另外两个是服务器使用的文件.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/xiaozhi-server/local-tts/gpt_sovits_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/xiaozhi-server/local-tts/gpt_sovits_v1.py -------------------------------------------------------------------------------- /python/xiaozhi-server/local-tts/配置文件.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/xiaozhi-server/local-tts/配置文件.txt -------------------------------------------------------------------------------- /python/xiaozhi-server/连接各种服务.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/python/xiaozhi-server/连接各种服务.md -------------------------------------------------------------------------------- /代码分析/小智.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/代码分析/小智.md -------------------------------------------------------------------------------- /代码分析/小智闹钟文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/代码分析/小智闹钟文档.md -------------------------------------------------------------------------------- /代码分析/插件/Screenshot_20250326_201012_com.jideos.jnotes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/代码分析/插件/Screenshot_20250326_201012_com.jideos.jnotes.jpg -------------------------------------------------------------------------------- /代码分析/插件/Screenshot_20250326_215027_com.jideos.jnotes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/代码分析/插件/Screenshot_20250326_215027_com.jideos.jnotes.jpg -------------------------------------------------------------------------------- /代码分析/插件/test_reqllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/代码分析/插件/test_reqllm.py -------------------------------------------------------------------------------- /代码分析/插件/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/代码分析/插件/test_response.py -------------------------------------------------------------------------------- /代码分析/服务器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/代码分析/服务器.md -------------------------------------------------------------------------------- /代码分析/服务器框图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XuSenfeng/ai-chat-local/HEAD/代码分析/服务器框图.jpg --------------------------------------------------------------------------------