Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
在Termux中运行LingChat-C++:打造移动端AI聊天伴侣本文将详细介绍如何在Termux环境中编译和运行LingChat-C++项目,这是一个基于C++开发的AI聊天应用,特别适配了Android终端环境。项目融合了WebSocket通信、RAG记忆系统和情感化交互界面,打造出独特的聊天体验。
项目背景LingChat-C++是LingChat的二创项目,专为Termux环境优化。它通过以下核心特性提升交互体验:
✅ RAG记忆系统:实现AI的长期记忆功能(现已废弃)
🎭 情感化交互:立绘表情与音效随对话情绪变化
🌙 昼夜模式:自动切换的日/夜主题界面
🔌 WebSocket通信:高效的前后端实时交互
环境准备与编译1. 安装工具链与依赖库
1pkg install curl libcurl clang make openssl nlohmann-json git #自行选择包管理器,如apt,apt-get等
2. 克隆并准备仓库
12git clone https://github.com/yun-helpr/LingChat-C--Te...