使用Yonsm/MiService项目获取did和hardware。
找个Ubuntu环境安装python环境(此处略,自行百度),然后先克隆项目
git clone https://github.com/Yonsm/MiService.git
安装aiohttp依赖
pip install aiohttp
然后运行如下命令:
python3 micli.py mina
如果成功的话,就会返回
“miotDID”: “xxxxx”,
“hardware”: “xxxx”
{
"hardware": "LX04",
"account": "输入账号",
"password": "输入密码",
"openai_key": "sk-Ab2xxxxxx",
"glm_key": "",
"bard_token": "",
"serpapi_api_key": "",
"cookie": "",
"mi_did": "xxxxxxxx",
"use_command": true, #我的型号是LX04,作者说必须为true,其他型号大多为false即可
"mute_xiaoai": true,
"verbose": false,
"bot": "chatgptapi",
"tts": "mi",
"edge_tts_voice": "zh-CN-XiaoxiaoNeural",
"prompt": "请用100字以内回答",
"keyword": ["请"],
"change_prompt_keyword": ["更改提示词"],
"start_conversation": "继续刚才的问题",
"end_conversation": "结束刚才的问题",
"stream": false,
"proxy": "http://192.xxx.xx.xx:7890",
"gpt_options": {}
}
在docker目录下创建一个xiaogpt的文件夹,然后把上面的配置文件保存为config.json文件名,上传到/docker/xiaogpt/config目录下。
docker run -v /volume1/docker/xiaogpt/config:/config yihong0618/xiaogpt --config=/config/config.json
这一步中,volume1/docker/xiaogpt/config需要替换为你自己刚才创建的config的路径
进入到群晖container manager后,会看到自动拉起一个“charming_diffie”的容器,看日志可以看到你和小爱的对话,包括小爱调用GPT后回复的结果。如果自动拉起了其他的容器,都可以删掉,保留这一个就可以,只要这个容器运行,你的小爱就是正常接入ChatGPT的。