1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# pull image
docker pull holegots/wechat-chatgpt
# run container
docker run -d --name wechat-chatgpt \
-e OPENAI_API_KEY="" \
-e MODEL="gpt-3.5-turbo" \
-e DISABLE_GROUP_MESSAGE="false" \
-e CHAT_PRIVATE_TRIGGER_KEYWORD="小助理" \
-v $(pwd)/data:/app/data/wechat-assistant.memory-card.json \
holegots/wechat-chatgpt:latest
#
# View the QR code to log in to wechat
docker logs -f wechat-chatgpt
|