# 更新兼容了日程助手

- 更新了初次使用提示
- 删除了GPTs开始的提示词(GPTs已经提供了该功能)
- 为日程记录功能增加了开始时间和结束时间(日记也能用)
This commit is contained in:
yshtcn
2024-04-26 16:57:58 +08:00
parent 152df1a293
commit 40fe768c03
2 changed files with 39 additions and 12 deletions

View File

@@ -15,7 +15,7 @@ RUN mkdir /data && chmod -R 777 /data
ENV PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
# 安装 Python 依赖
RUN pip install --no-cache-dir -i $PIP_INDEX_URL requests
RUN pip install --no-cache-dir -i $PIP_INDEX_URL requests tqdm
# 设置容器启动后执行的命令
CMD [ "python", "./DiaryAssistant.py" ]