Files
GenericAgent/.gitignore
Liang Jiaqing 12d79b7847 feat: 添加定时任务调度器和相关配置
- 新增定时任务调度器(agentmain.py):支持基于时间戳的任务自动执行
- 添加scheduled_task_sop.md:定时任务执行流程文档
- 优化agent_loop.py:移除错误提示emoji
- 调整sidercall.py:降低context_win至10000
- 更新.gitignore:忽略tasks目录,白名单scheduled_task_sop.md
2026-02-14 10:10:10 +08:00

60 lines
811 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 临时文件夹
temp/
tmp/
# Python 编译文件与环境
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
env/
build/
dist/
*.egg-info/
# Streamlit 配置与缓存
.streamlit/
# IDE 配置
.vscode/
.idea/
*.swp
*.swo
# 操作系统文件
.DS_Store
Thumbs.db
# 本地日志与凭据
*.log
.env
auth.json
# 忽略模型响应记录
model_responses.txt
# 任务调度目录
tasks/
*.zip
# 存储敏感信息的记忆文件夹(除了公开的 SOP
memory/*
!memory/memory_management_sop.md
# Allow tracking of specific SOPs
!memory/web_setup_sop.md
!memory/autonomous_operation_sop.md
!memory/scheduled_task_sop.md
# ljqCtrl related tools
!memory/ljqCtrl.py
!memory/ljqCtrl_sop.md
# mem_scanner related tools
!memory/mem_scanner.py
!memory/mem_scanner_sop.md
# Visual Studio
.vs/
restore_commit.txt